You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In src/test.c, line 106,executeCommand("/usr/bin/bash", bashArgs, envp, "./tmp/outputBash.tmp", "./tmp/errorBash.tmp"); we have /usr/bin/bash which leads on my macOs M1 running the basic test to this output KO OUTPUT STDOUT STDERR EXIT_CODE FILE_PERMISSIONS for all the tests. The executable on my machine is located at /bin/bash and changing the line solved the problem.
The text was updated successfully, but these errors were encountered:
Thank you again. It should actually be /bin/bash. Feel free to: clone the repository (1), create a new branch with git checkout -b <feature_name> (2), commit and push a fix (3), open a pull request to merge in master (4).
In src/test.c, line 106,
executeCommand("/usr/bin/bash", bashArgs, envp, "./tmp/outputBash.tmp", "./tmp/errorBash.tmp");
we have/usr/bin/bash
which leads on my macOs M1 running the basic test to this outputKO OUTPUT STDOUT STDERR EXIT_CODE FILE_PERMISSIONS
for all the tests. The executable on my machine is located at /bin/bash and changing the line solved the problem.The text was updated successfully, but these errors were encountered: