Logging: Clean up skipping test

Clean up on top of the last fix: if we skip the entire test case then
the test run would fail because we skipped all the tests. This adds a
dummy test case to prevent that. It is a fairly nasty work around I plan
to work on something that makes this not required any more anyway.
This commit is contained in:
Nik Everett 2018-09-07 21:54:38 -04:00
parent 97736ac46a
commit ab9e2cddf1
1 changed files with 7 additions and 0 deletions

View File

@ -43,4 +43,11 @@ public class NodeNameInLogsIT extends NodeNameInLogsIntegTestCase {
}
});
}
public void testDummy() {
/* Dummy test case so that when we run this test on a platform that
* does not support our syscall filters and we skip the test above
* we don't fail the entire test run because we skipped all the tests.
*/
}
}