You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/ravi-tests
Dibyendu Majumdar 86a2adb4f7
issue #86: merge Lua 5.3.3
8 years ago
..
listings add bytecode listings 9 years ago
README.rst array types cannot be used as metatables 9 years ago
basics.lua in arithmetic operations use constants directly when possible 9 years ago
bitwise_tests.lua bitwise ops wip 9 years ago
bug.lua remove experimental NAN TAGGING solution (as it is not helpful) and fix bugs in SETLIST for numeric arrays (missing type conversion) 9 years ago
fannkuchen.lua array types cannot be used as metatables 9 years ago
fannkuchen.ravi refactoring 9 years ago
fornum_test1.lua array types cannot be used as metatables 9 years ago
fornum_test2.lua array types cannot be used as metatables 9 years ago
fornum_test2.ravi reformat code 9 years ago
fornum_test3.lua array types cannot be used as metatables 9 years ago
gaussian2.lua issue #76 type assertions 8 years ago
mandel.lua validate the mandel test 9 years ago
mandel.ravi change syntax from int to integer, and double to number 9 years ago
mandel1.lua array types cannot be used as metatables 9 years ago
mandel1.ravi array types cannot be used as metatables 9 years ago
matmul1.lua doc updates 9 years ago
matmul1.ravi merge 5.3.2 bug fix 8 years ago
matmul2.lua array types cannot be used as metatables 9 years ago
pcall.lua investigate crash on windows 9 years ago
pisum.lua some more tests 9 years ago
pisum.ravi change syntax from int to integer, and double to number 9 years ago
ravi_errors.ravi issue #82 various fixes 8 years ago
ravi_tests1.ravi issue #86: merge Lua 5.3.3 8 years ago
ravi_tests2.ravi issue #76 type assertions 8 years ago
run_tests.sh use strncmp instead of memcmp to avoid ASAN complaining 8 years ago

README.rst

This folder contains various performance and unit tests.


Language tests
--------------
* basics.lua - some simple tests
* ravi_tests1.ravi - contains some basic tests
* ravi_errors.ravi - contains tests for error conditions
* bitwise_tests.lua - modified Lua 5.3 tests to exercise JIT on bitwise operations

Performance tests
-----------------
Following are simple loop tests:

* fornum_test1.lua
* fornum_test2.lua
* fornum_test2.ravi - with optional types
* fornum_test3.lua

Matrix multiplication test:

* matmul1.lua - matrix multiplication (Lua compatible)
* matmul1.ravi - matrix multiplication (ravi version with static typing)

Following performance tests were obtained from the `The Computer Programming Language Benchmarks Game <http://benchmarksgame.alioth.debian.org/>`_. Original author is `Mike Pall <http://luajit.org/>`_.

* fannkuchen.lua
* fannkuchen.ravi - with optional types

* mandel1.ravi - modified so that it can be JIT compiled
* mandel1.lua - can be JIT compiled but also compatible with Lua

See ``run_tests.sh`` for how to run these tests.