mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-10 09:43:52 +01:00
Add comment when running tests on Linux how to see results
Thanks @juozas for mentioning this (https://irrlicht.sourceforge.io/forum/viewtopic.php?p=306758#p306758) git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6426 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
parent
1803413b49
commit
389ec11a58
@ -246,7 +246,10 @@ int main(int argumentCount, char * arguments[])
|
|||||||
#ifdef _IRR_WINDOWS_
|
#ifdef _IRR_WINDOWS_
|
||||||
(void)system("tests.log");
|
(void)system("tests.log");
|
||||||
#else
|
#else
|
||||||
(void)system("$PAGER tests.log");
|
if ( getenv("PAGER") )
|
||||||
|
(void)system("$PAGER tests.log");
|
||||||
|
else
|
||||||
|
printf("See tests.log for results. Or set $PAGER environment variable to show it directly.\n");
|
||||||
#endif
|
#endif
|
||||||
return fails;
|
return fails;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Tests finished. 72 tests of 72 passed.
|
Tests finished. 72 tests of 72 passed.
|
||||||
Compiled as DEBUG
|
Compiled as DEBUG
|
||||||
Test suite pass at GMT Thu Sep 15 20:10:06 2022
|
Test suite pass at GMT Sat Sep 24 13:51:42 2022
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user