We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f99f098 commit 6905967Copy full SHA for 6905967
FFmpegAndroid/src/androidTest/java/com/github/hiteshsondhi88/libffmpeg/ShellCommandTest.java
@@ -44,7 +44,8 @@ public void run() {
44
45
public void testRunWaitFor() throws Exception {
46
ShellCommand shellCommand = new ShellCommand();
47
- CommandResult commandResult = shellCommand.runWaitFor("ls /sdcard/");
+ CommandResult commandResult = shellCommand.runWaitFor("logcat -d");
48
+ Thread.sleep(2000);
49
assertNotNull(commandResult);
50
assertEquals(true, commandResult.success);
51
assertThat(commandResult.output).isNotEmpty();
0 commit comments