[ https://issues.apache.org/jira/browse/KAFKA-5753?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16135257#comment-16135257 ]
ASF GitHub Bot commented on KAFKA-5753: --------------------------------------- GitHub user ijuma opened a pull request: https://github.com/apache/kafka/pull/3706 KAFKA-5753: ShellTest.testRunProgramWithErrorReturn fails on macOS You can merge this pull request into a Git repository by running: $ git pull https://github.com/ijuma/kafka fix-shell-test-mac Alternatively you can review and apply these changes as the patch at: https://github.com/apache/kafka/pull/3706.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #3706 ---- commit 0992b7ae018fb2c9d6875431ea217329525f05cd Author: Ismael Juma <ism...@juma.me.uk> Date: 2017-08-21T14:53:46Z KAFKA-5753: ShellTest.testRunProgramWithErrorReturn fails on macOS ---- > ShellTest.testRunProgramWithErrorReturn fails on macOS > ------------------------------------------------------ > > Key: KAFKA-5753 > URL: https://issues.apache.org/jira/browse/KAFKA-5753 > Project: Kafka > Issue Type: Bug > Reporter: Jason Gustafson > Assignee: Ismael Juma > Fix For: 1.0.0 > > > Seeing this locally (on Mac OS): > {code} > java.lang.AssertionError > at org.junit.Assert.fail(Assert.java:86) > at org.junit.Assert.assertTrue(Assert.java:41) > at org.junit.Assert.assertTrue(Assert.java:52) > at > org.apache.kafka.common.utils.ShellTest.testRunProgramWithErrorReturn(ShellTest.java:69) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:498) > at > org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) > at > org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) > at > org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) > at > org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) > at > org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:298) > at > org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:292) > at java.util.concurrent.FutureTask.run(FutureTask.java:266) > at java.lang.Thread.run(Thread.java:745) > {code} > The failing assertion is this: > {code} > assertTrue(e.getMessage().contains("No such file")); > {code} > The actual exception is this: > {code} > org.apache.kafka.common.utils.Shell$ExitCodeException: head: illegal byte > count -- 0 > at org.apache.kafka.common.utils.Shell.runCommand(Shell.java:130) > at org.apache.kafka.common.utils.Shell.run(Shell.java:76) > at > org.apache.kafka.common.utils.Shell$ShellCommandExecutor.execute(Shell.java:204) > at org.apache.kafka.common.utils.Shell.execCommand(Shell.java:268) > at org.apache.kafka.common.utils.Shell.execCommand(Shell.java:255) > at > org.apache.kafka.common.utils.ShellTest.testRunProgramWithErrorReturn(ShellTest.java:66) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:498) > at > org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) > at > org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) > at > org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) > at > org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) > at > org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:298) > at > org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:292) > at java.util.concurrent.FutureTask.run(FutureTask.java:266) > at java.lang.Thread.run(Thread.java:745) > {code} -- This message was sent by Atlassian JIRA (v6.4.14#64029)