Skip to content
Snippets Groups Projects
Commit b14f6bc6 authored by brinn's avatar brinn
Browse files

change: bail out if unix library is not operational

SVN: 10405
parent 325555dc
No related merge requests found
......@@ -279,6 +279,11 @@ public class UnixTests extends AbstractFileSystemTestCase
{
System.out.println(BuildAndEnvironmentInfo.INSTANCE);
System.out.println();
if (Unix.isOperational() == false)
{
System.err.println("No unix library found.");
System.exit(1);
}
final UnixTests test = new UnixTests();
try
{
......
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