view test/fcn-handle-derived-resolution/@fhdr_other/fhdr_other.m @ 18414:68fc31c69fcb

Workaround for clear -classes and failures in 'make check' (bug #41269) Rename classes in fcn-handle-derived-resolution so they don't conflict with the same class names in ctor-vs-method. * test/fcn-handle-derived-resolution/@fhdr_derived/fhdr_derived.m: Renamed from derived.m * test/fcn-handle-derived-resolution/@fhdr_other/fhdr_other.m: renamed from other.m * test/fcn-handle-derived-resolution/@fhdr_other/getsize_arrayfun.m: Moved from @other dir. * test/fcn-handle-derived-resolution/@fhdr_other/getsize_cellfun.m: Moved from @other dir. * test/fcn-handle-derived-resolution/@fhdr_other/getsize_loop.m: Moved from @other dir. * test/fcn-handle-derived-resolution/@fhdr_parent/fhdr_parent.m: renamed from parent.m * test/fcn-handle-derived-resolution/@fhdr_parent/numel.m: Moved from @parent dir. * fcn-handle-derived-resolution/fcn-handle-derived-resolution.tst: Call newly renamed files in %!tests. * test/fcn-handle-derived-resolution/module.mk: Add renamed files to build system.
author Rik <rik@octave.org>
date Thu, 30 Jan 2014 17:56:43 -0800
parents test/fcn-handle-derived-resolution/@other/other.m@a00ff5cedb9b
children
line wrap: on
line source

function r = fhdr_other (n)
  s.d = fhdr_derived (n);
  r = class (s, 'fhdr_other');
end