aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHisham <hisham@gobolinux.org>2016-10-19 15:22:50 -0400
committerHisham <hisham@gobolinux.org>2016-10-19 15:22:50 -0400
commit8db1399ab7e9e9f0d211f81a038af18dfd5eadff (patch)
tree6fef6e52c47b1a16302713e45a24769a2906bb9e /test
parent02dd4e1301ea11d60be2e36d66392d367c8e2c5b (diff)
downloadluarocks-8db1399ab7e9e9f0d211f81a038af18dfd5eadff.tar.gz
luarocks-8db1399ab7e9e9f0d211f81a038af18dfd5eadff.tar.bz2
luarocks-8db1399ab7e9e9f0d211f81a038af18dfd5eadff.zip
Merge in Windows-compatible quoting.
Diffstat (limited to 'test')
-rw-r--r--test/test_environment.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_environment.lua b/test/test_environment.lua
index f813707a..b174020b 100644
--- a/test/test_environment.lua
+++ b/test/test_environment.lua
@@ -513,8 +513,8 @@ function test_env.setup_specs(extra_rocks)
513 test_env.main() 513 test_env.main()
514 package.path = test_env.env_variables.LUA_PATH 514 package.path = test_env.env_variables.LUA_PATH
515 515
516 test_env.platform = execute_output(test_env.testing_paths.lua .. " -e 'print(require(\"luarocks.core.cfg\").arch)'", false, test_env.env_variables) 516 test_env.platform = execute_output(test_env.testing_paths.lua .. " -e \"print(require('luarocks.cfg').arch)\"", false, test_env.env_variables)
517 test_env.lib_extension = execute_output(test_env.testing_paths.lua .. " -e 'print(require(\"luarocks.core.cfg\").lib_extension)'", false, test_env.env_variables) 517 test_env.lib_extension = execute_output(test_env.testing_paths.lua .. " -e \"print(require('luarocks.cfg').lib_extension)\"", false, test_env.env_variables)
518 test_env.md5sums = create_md5sums(test_env.testing_paths) 518 test_env.md5sums = create_md5sums(test_env.testing_paths)
519 test_env.setup_done = true 519 test_env.setup_done = true
520 title("RUNNING TESTS") 520 title("RUNNING TESTS")