One more fix. Files are not [Local] on Unix systems using Empty profile. BLD200310030100
authorjkovalsky@netbeans.org
Wed, 01 Oct 2003 13:37:22 +0000
changeset 35563f36b0d1e748
parent 3555 7e4c54d7faa7
child 3557 1bb282e89a94
One more fix. Files are not [Local] on Unix systems using Empty profile.
vcs.advanced/test/qa-functional/src/complete/common/Commands.java
     1.1 --- a/vcs.advanced/test/qa-functional/src/complete/common/Commands.java	Wed Oct 01 12:07:27 2003 +0000
     1.2 +++ b/vcs.advanced/test/qa-functional/src/complete/common/Commands.java	Wed Oct 01 13:37:22 2003 +0000
     1.3 @@ -456,7 +456,9 @@
     1.4              filesystemNode.expand();
     1.5              Node fileNode = new Node(filesystemNode, "A_File");
     1.6              new CompileAction().perform(fileNode);
     1.7 -            MainWindowOperator.getDefault().waitStatusText("Finished A_File [Local].");
     1.8 +            Thread.sleep(10000);
     1.9 +            if (MainWindowOperator.getDefault().getStatusText().indexOf("Finished A_File") == -1)
    1.10 +                throw new Exception("Error: A_File class was not compiled within 10 seconds.");
    1.11              new Action(null, "Empty|My Submenu|Test").perform(filesystemNode);
    1.12              MainWindowOperator.getDefault().waitStatusText("Command Test is running ...");
    1.13              VCSCommandsOutputOperator outputWindow = new VCSCommandsOutputOperator("Test");