diff options
author | Hisham <hisham@gobolinux.org> | 2016-07-28 18:15:35 -0300 |
---|---|---|
committer | Hisham <hisham@gobolinux.org> | 2016-07-28 18:15:35 -0300 |
commit | 83b0f6d2343f2631b9dc96c09c2bc4b2cfadd17f (patch) | |
tree | b2c5c80fe573a0bd6e3efb8cea3c9a19dc1ab575 | |
parent | 628779b5a2357685221f62141bec22c0e84a24f1 (diff) | |
download | luarocks-83b0f6d2343f2631b9dc96c09c2bc4b2cfadd17f.tar.gz luarocks-83b0f6d2343f2631b9dc96c09c2bc4b2cfadd17f.tar.bz2 luarocks-83b0f6d2343f2631b9dc96c09c2bc4b2cfadd17f.zip |
Tweak tests for luarocks-3 branch.
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | src/bin/luarocks | 3 | ||||
-rwxr-xr-x | src/bin/luarocks-admin | 3 | ||||
-rw-r--r-- | test/test_environment.lua | 4 |
4 files changed, 7 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 02bdb6c9..86f7bbad 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -42,7 +42,7 @@ matrix: | |||
42 | before_install: | 42 | before_install: |
43 | - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew install python; fi | 43 | - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew install python; fi |
44 | - pip install hererocks | 44 | - pip install hererocks |
45 | - hererocks lua_install -r^ --$LUA | 45 | - hererocks lua_install --luarocks @luarocks-3 --$LUA |
46 | - export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH | 46 | - export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH |
47 | 47 | ||
48 | install: | 48 | install: |
diff --git a/src/bin/luarocks b/src/bin/luarocks index 21f17da9..633f9f43 100755 --- a/src/bin/luarocks +++ b/src/bin/luarocks | |||
@@ -1,4 +1,5 @@ | |||
1 | #!/usr/bin/env lua | 1 | #!/Programs/Lua/5.3.0/bin/lua |
2 | package.path = [[/Users/hisham/luarocks/src/?.lua;]]..package.path | ||
2 | 3 | ||
3 | -- this should be loaded first. | 4 | -- this should be loaded first. |
4 | local cfg = require("luarocks.core.cfg") | 5 | local cfg = require("luarocks.core.cfg") |
diff --git a/src/bin/luarocks-admin b/src/bin/luarocks-admin index 660c0a70..587afcab 100755 --- a/src/bin/luarocks-admin +++ b/src/bin/luarocks-admin | |||
@@ -1,4 +1,5 @@ | |||
1 | #!/usr/bin/env lua | 1 | #!/Programs/Lua/5.3.0/bin/lua |
2 | package.path = [[/Users/hisham/luarocks/src/?.lua;]]..package.path | ||
2 | 3 | ||
3 | -- this should be loaded first. | 4 | -- this should be loaded first. |
4 | local cfg = require("luarocks.core.cfg") | 5 | local cfg = require("luarocks.core.cfg") |
diff --git a/test/test_environment.lua b/test/test_environment.lua index 13e548f9..c26c1e87 100644 --- a/test/test_environment.lua +++ b/test/test_environment.lua | |||
@@ -361,7 +361,7 @@ local function reset_environment(testing_paths, md5sums) | |||
361 | end | 361 | end |
362 | 362 | ||
363 | local function create_paths(luaversion_full) | 363 | local function create_paths(luaversion_full) |
364 | local cfg = require("luarocks.cfg") | 364 | local cfg = require("luarocks.core.cfg") |
365 | 365 | ||
366 | local testing_paths = {} | 366 | local testing_paths = {} |
367 | testing_paths.luadir = cfg.variables.LUA_BINDIR:gsub("/bin/?$", "") | 367 | testing_paths.luadir = cfg.variables.LUA_BINDIR:gsub("/bin/?$", "") |
@@ -409,7 +409,7 @@ function test_env.setup_specs(extra_rocks) | |||
409 | test_env.main() | 409 | test_env.main() |
410 | package.path = test_env.env_variables.LUA_PATH | 410 | package.path = test_env.env_variables.LUA_PATH |
411 | 411 | ||
412 | test_env.platform = execute_output(test_env.testing_paths.lua .. " -e 'print(require(\"luarocks.cfg\").arch)'", false, test_env.env_variables) | 412 | test_env.platform = execute_output(test_env.testing_paths.lua .. " -e 'print(require(\"luarocks.core.cfg\").arch)'", false, test_env.env_variables) |
413 | test_env.md5sums = create_md5sums(test_env.testing_paths) | 413 | test_env.md5sums = create_md5sums(test_env.testing_paths) |
414 | test_env.setup_done = true | 414 | test_env.setup_done = true |
415 | title("RUNNING TESTS") | 415 | title("RUNNING TESTS") |