-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
luajit: adjust defaults LUA_(C)PATH #286822
New issue
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
Changes from all commits
640cdcb
815d368
0c94171
545c14d
99bb198
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,14 +3,14 @@ | |
| # Example: | ||
| # fail "It should have been but it wasn't to be" | ||
| function fail() { | ||
| echo "$1" | ||
| echo -e "$1" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nope, I wanted to echo the newlines. I am not sure what's best actually, do several fail calls or keep the newline ? anyway this patch made actually harder to look at teh differences because $1 and $2 now dont start on same line. |
||
| exit 1 | ||
| } | ||
|
|
||
|
|
||
| function assertStringEqual() { | ||
| if ! diff <(echo "$1") <(echo "$2") ; then | ||
| fail "expected \"$1\" to be equal to \"$2\"" | ||
| fail "Actual value: \"$1\"\nExpected value: \"$2\"" | ||
| fi | ||
| } | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.