Update _runme.php for new testcase functions and globals

This commit is contained in:
Olly Betts 2022-02-27 18:27:58 +13:00
commit bf382f01b4
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
require "tests.php";
// New functions
check::functions(array('get_func1_ptr','get_func2_ptr','test_func_ptr'));
check::functions(array('get_func1_ptr','get_func2_ptr','get_const_reference','get_reference','test_func_ptr'));
// New classes
check::classes(array('cpp_basic','Foo','FooSub','FooSubSub','Bar','Fl_Window','JustConst'));
// No new vars

View file

@ -7,7 +7,7 @@ check::functions(array('jaguar','lotus','tvr','ferrari','fiat'));
// New classes
check::classes(array('ignore_parameter','SportsCars','MiniCooper','MorrisMinor','FordAnglia','AustinAllegro'));
// No new vars
check::globals(array());
check::globals(array('called_argout'));
check::equal(jaguar(2,3.4),"hello",'jaguar(2,3.4)=="hello"');
check::equal(lotus("eek",3.4),101,'lotus("eek",3.4)==101');