diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2013-12-20 18:48:11 -0200 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2013-12-20 18:48:11 -0200 |
commit | 13a249a6c1dc7e43bbe29791d2ad2bb2b42850d6 (patch) | |
tree | 6aeeb7c59b542072ea8ee3fbf0b2335abcf7a0d8 /test | |
parent | f1693432ac62bac910215e962f4a3417111ca840 (diff) | |
download | luarocks-13a249a6c1dc7e43bbe29791d2ad2bb2b42850d6.tar.gz luarocks-13a249a6c1dc7e43bbe29791d2ad2bb2b42850d6.tar.bz2 luarocks-13a249a6c1dc7e43bbe29791d2ad2bb2b42850d6.zip |
Fix regressions caused by #194. Thank you, integrated testing!
Diffstat (limited to 'test')
-rwxr-xr-x | test/testing.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testing.sh b/test/testing.sh index 0386978a..3a199883 100755 --- a/test/testing.sh +++ b/test/testing.sh | |||
@@ -397,7 +397,7 @@ fail_admin_remove_missing() { $luarocks_admin --server=testing remove; } | |||
397 | 397 | ||
398 | fail_deps_mode_invalid_arg() { $luarocks remove luacov --deps-mode; } | 398 | fail_deps_mode_invalid_arg() { $luarocks remove luacov --deps-mode; } |
399 | test_deps_mode_one() { $luarocks build --tree="system" lpeg && $luarocks list && $luarocks build --deps-mode=one --tree="$testing_tree" lxsh && [ `$luarocks_noecho list --tree="$testing_tree" --porcelain lpeg | wc -l` = 1 ]; } | 399 | test_deps_mode_one() { $luarocks build --tree="system" lpeg && $luarocks list && $luarocks build --deps-mode=one --tree="$testing_tree" lxsh && [ `$luarocks_noecho list --tree="$testing_tree" --porcelain lpeg | wc -l` = 1 ]; } |
400 | test_deps_mode_order() { $luarocks build --tree="system" lpeg && $luarocks build --deps-mode=order --tree="$testing_tree" lxsh && [ `$luarocks_noecho list --tree="$testing_tree" --porcelain lpeg | wc -l` = 0 ]; } | 400 | test_deps_mode_order() { $luarocks build --tree="system" lpeg && $luarocks build --deps-mode=order --tree="$testing_tree" lxsh && $luarocks_noecho list --tree="$testing_tree" --porcelain lpeg && [ `$luarocks_noecho list --tree="$testing_tree" --porcelain lpeg | wc -l` = 0 ]; } |
401 | test_deps_mode_order_sys() { $luarocks build --tree="$testing_tree" lpeg && $luarocks build --deps-mode=order --tree="$testing_sys_tree" lxsh && [ `$luarocks_noecho list --tree="$testing_sys_tree" --porcelain lpeg | wc -l` = 1 ]; } | 401 | test_deps_mode_order_sys() { $luarocks build --tree="$testing_tree" lpeg && $luarocks build --deps-mode=order --tree="$testing_sys_tree" lxsh && [ `$luarocks_noecho list --tree="$testing_sys_tree" --porcelain lpeg | wc -l` = 1 ]; } |
402 | test_deps_mode_all_sys() { $luarocks build --tree="$testing_tree" lpeg && $luarocks build --deps-mode=all --tree="$testing_sys_tree" lxsh && [ `$luarocks_noecho list --tree="$testing_sys_tree" --porcelain lpeg | wc -l` = 0 ]; } | 402 | test_deps_mode_all_sys() { $luarocks build --tree="$testing_tree" lpeg && $luarocks build --deps-mode=all --tree="$testing_sys_tree" lxsh && [ `$luarocks_noecho list --tree="$testing_sys_tree" --porcelain lpeg | wc -l` = 0 ]; } |
403 | test_deps_mode_none() { $luarocks build --tree="$testing_tree" --deps-mode=none lxsh; [ `$luarocks_noecho list --tree="$testing_tree" --porcelain lpeg | wc -l` = 0 ]; } | 403 | test_deps_mode_none() { $luarocks build --tree="$testing_tree" --deps-mode=none lxsh; [ `$luarocks_noecho list --tree="$testing_tree" --porcelain lpeg | wc -l` = 0 ]; } |