diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2013-12-09 17:35:33 -0200 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2013-12-09 17:35:33 -0200 |
commit | 8f3f740a1356b1a5236778b130f91a5ef20e4d1d (patch) | |
tree | 8037c93144b0763478d00654bf773841a0e8e0f2 /test | |
parent | 8bf1272bf6c273d2f732b0e1629ac8c9590741ea (diff) | |
download | luarocks-8f3f740a1356b1a5236778b130f91a5ef20e4d1d.tar.gz luarocks-8f3f740a1356b1a5236778b130f91a5ef20e4d1d.tar.bz2 luarocks-8f3f740a1356b1a5236778b130f91a5ef20e4d1d.zip |
skip rsync stuff
Diffstat (limited to 'test')
-rwxr-xr-x | test/testing.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testing.sh b/test/testing.sh index bb142b0f..bfb2c10e 100755 --- a/test/testing.sh +++ b/test/testing.sh | |||
@@ -265,13 +265,13 @@ test_unpack_binary() { rm -rf ./luasocket-${verrev_luasocket} && $luarocks build | |||
265 | test_admin_help() { $luarocks_admin help; } | 265 | test_admin_help() { $luarocks_admin help; } |
266 | 266 | ||
267 | test_admin_make_manifest() { $luarocks_admin make_manifest; } | 267 | test_admin_make_manifest() { $luarocks_admin make_manifest; } |
268 | test_admin_add_rsync() { $luarocks_admin --server=testing add ./luasocket-${verrev_luasocket}.src.rock; } | 268 | test_admin_add_rsync() { if [ "$travis" ]; then return; fi; $luarocks_admin --server=testing add ./luasocket-${verrev_luasocket}.src.rock; } |
269 | test_admin_add_sftp() { if [ "$travis" ]; then return; fi; export LUAROCKS_CONFIG="$testing_dir/testing_config_sftp.lua" && $luarocks_admin --server=testing add ./luasocket-${verrev_luasocket}.src.rock; export LUAROCKS_CONFIG="$testing_dir/testing_config.lua"; } | 269 | test_admin_add_sftp() { if [ "$travis" ]; then return; fi; export LUAROCKS_CONFIG="$testing_dir/testing_config_sftp.lua" && $luarocks_admin --server=testing add ./luasocket-${verrev_luasocket}.src.rock; export LUAROCKS_CONFIG="$testing_dir/testing_config.lua"; } |
270 | fail_admin_add_missing() { $luarocks_admin --server=testing add; } | 270 | fail_admin_add_missing() { $luarocks_admin --server=testing add; } |
271 | fail_admin_invalidserver() { $luarocks_admin --server=invalid add ./luasocket-${verrev_luasocket}.src.rock; } | 271 | fail_admin_invalidserver() { $luarocks_admin --server=invalid add ./luasocket-${verrev_luasocket}.src.rock; } |
272 | fail_admin_invalidrock() { $luarocks_admin --server=testing add invalid; } | 272 | fail_admin_invalidrock() { $luarocks_admin --server=testing add invalid; } |
273 | test_admin_refresh_cache() { $luarocks_admin --server=testing refresh_cache; } | 273 | test_admin_refresh_cache() { $luarocks_admin --server=testing refresh_cache; } |
274 | test_admin_remove() { $luarocks_admin --server=testing remove ./luasocket-${verrev_luasocket}.src.rock; } | 274 | test_admin_remove() { if [ "$travis" ]; then return; fi; $luarocks_admin --server=testing remove ./luasocket-${verrev_luasocket}.src.rock; } |
275 | fail_admin_remove_missing() { $luarocks_admin --server=testing remove; } | 275 | fail_admin_remove_missing() { $luarocks_admin --server=testing remove; } |
276 | 276 | ||
277 | fail_deps_mode_invalid_arg() { $luarocks remove luacov --deps-mode; } | 277 | fail_deps_mode_invalid_arg() { $luarocks remove luacov --deps-mode; } |