We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The lexer testing script fails with:
./test_lexer.sh: line 49: dos2unix: command not found
in build fa08307
The text was updated successfully, but these errors were encountered:
In test_lexer.sh line 49 rather than:
diff <(cat test/ref/$BASENAME.stdout.txt | dos2unix) <(cat test/out/$BASENAME.stdout.txt) > test/out/$BASENAME.diff.txt
it should be:
diff <(cat test/ref/$BASENAME.stdout.txt | ${DOS2UNIX}) <(cat test/out/$BASENAME.stdout.txt) > test/out/$BASENAME.diff.txt
Sorry, something went wrong.
Fix missing dos2unix bug for lab machines. See #54
221e9a0
No branches or pull requests
The lexer testing script fails with:
in build fa08307
The text was updated successfully, but these errors were encountered: