Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature 3436 test pr build works from forked repo (will fail - just for testing) #3437

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Test-only.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## About
Just a test file for fork build running check
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void process_adapter_enter_input_works_as_expected() throws Exception {
ProcessAdapter adapter = new ProcessAdapter(process);

/* test */
assertTrue(process.isAlive());
assertFalse(process.isAlive());
adapter.enterInput("my-user input...via stdin".toCharArray());
adapter.waitFor(2, TimeUnit.SECONDS);
assertEquals(0, adapter.exitValue());
Expand Down
Loading