Skip to content
Snippets Groups Projects
Commit 7bc9c73d authored by Brad King's avatar Brad King
Browse files

ENH: Disabling test 6 on QNX until process killing can be resolved. It will...

ENH: Disabling test 6 on QNX until process killing can be resolved.  It will just fail always for now.
parent 6cbf3fba
No related branches found
No related tags found
No related merge requests found
......@@ -321,6 +321,13 @@ int main(int argc, const char* argv[])
cmd[1] = "run";
cmd[2] = argv[1];
cmd[3] = 0;
#if defined(__QNX__)
if(n == 6)
{
printf("This test is disabled on QNX for now.\n");
return 1;
}
#endif
fprintf(stdout, "Output on stdout before test %d.\n", n);
fprintf(stderr, "Output on stderr before test %d.\n", n);
fflush(stdout);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment