Skip to content

Commit

Permalink
Merge branch 'lua-51-testsuite' of https://github.com/LuaJIT/LuaJIT-t…
Browse files Browse the repository at this point in the history
…est-cleanup into lua-51-testsuite
  • Loading branch information
Dibyendu Majumdar committed Oct 8, 2016
2 parents 1cb6161 + e832e54 commit a6bb93e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions lua5.1-tests/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Lua 5.1 Test Suite

This directory contains a modified version of the Lua 5.1 test suite. The modifications are primarily to disable or amend some tests
so that the test suite can be run.

## Running the test suite

You need to have `luajit` on your path.

On UNIX systems just execute:
```
./run.sh
```

## Tests disabled or ignored
Wherever tests have been switched off or ignored a comment has been added and the code has been made conditional. These failures will
be investigated and either the tests will be modified or permanently disabled depending upon whether the issue is one of compatibility
or a defect in LuaJIT.

Example of excluded test:
```
if not jit then
-- FIXME tests fail in LuaJIT
dofile('main.lua')
end
```

0 comments on commit a6bb93e

Please sign in to comment.