diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-27 16:57:06 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-27 17:55:10 -0300 |
commit | d04ca90f5c3aca60641b2ee63931d66f593bbbd3 (patch) | |
tree | 91fb60f0120fbfbf0b68d8b1b85b2a4110391738 /scripts/setup-test-tools.sh | |
parent | 05b9e11584c30c03cb911bf909374c86450ee13e (diff) | |
download | rneovim-d04ca90f5c3aca60641b2ee63931d66f593bbbd3.tar.gz rneovim-d04ca90f5c3aca60641b2ee63931d66f593bbbd3.tar.bz2 rneovim-d04ca90f5c3aca60641b2ee63931d66f593bbbd3.zip |
Add basic infrastructure for unit testing
Tests will be written using the [moonscript](http://moonscript.org/) language,
a lua 'dialect' that is whitespace-significant and has a syntax similar to
coffeescript. The test framework used is [busted](http://olivinelabs.com/busted/),
a bdd framework for lua/moonscript.
Luajit has a nice ffi module, which lets lua programs link shared libraries and
call it's functions without writing any C code.
To take advantage of this fact for testing C functions, a new target was added
to CMakeLists.txt, which compiles neovim as a shared library that is loaded by
the process running the tests.
This commit adds necessary code for downloading and installing a lua package
manager(luarocks) locally. It wasn't added as a subtree because there are quite
a few blobs in its source tree.
Diffstat (limited to 'scripts/setup-test-tools.sh')
-rw-r--r-- | scripts/setup-test-tools.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/setup-test-tools.sh b/scripts/setup-test-tools.sh new file mode 100644 index 0000000000..3e4a274f59 --- /dev/null +++ b/scripts/setup-test-tools.sh @@ -0,0 +1,22 @@ +. scripts/common.sh + +luarocks_ver=v2.1.2 +luarocks_repo=keplerproject/luarocks +luarocks_sha1=69ea9b641a5066b1f316847494d8c63a4693977d +luarocks_dir="$pkgroot/third-party/luarocks" + +github_download "$luarocks_repo" "$luarocks_ver" "$luarocks_dir" \ + "$luarocks_sha1" + +cd "$luarocks_dir" + +./configure --prefix="$prefix" --force-config --with-lua="$prefix" \ + --with-lua-include="$prefix/include/luajit-2.0" \ + --lua-suffix="jit" + +make bootstrap + +# install tools for testing +luarocks install moonrocks --server=http://rocks.moonscript.org +moonrocks install moonscript +moonrocks install busted |