This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-exec.git
The following commit(s) were added to refs/heads/master by this push:
new a374f35 Disable broken test.
a374f35 is described below
commit a374f356283a968897ef9ca3169c574108fa611e
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Feb 25 08:10:22 2022 -0500
Disable broken test.
The file utf8CharacterScript is missing from the repository and is not
in its history.
---
src/test/java/org/apache/commons/exec/LogOutputStreamTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java
b/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java
index 8f578d2..dc4b36e 100644
--- a/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java
+++ b/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java
@@ -27,6 +27,7 @@ import java.nio.charset.Charset;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
+import org.junit.Ignore;
import org.junit.Test;
/**
@@ -75,6 +76,7 @@ public class LogOutputStreamTest {
}
@Test
+ @Ignore("The file utf8CharacterScript is missing from the repository and
is not in its history")
public void testStdoutWithUTF8Characters() throws Exception {
this.systemOut = new SystemLogOutputStream(1,
Charset.forName("UTF-8"));
this.exec.setStreamHandler(new PumpStreamHandler(systemOut,
systemOut));