From bcb5b929968a9aaffdf3e816e8de10b98f389d00 Mon Sep 17 00:00:00 2001 From: mihacooper Date: Sun, 25 Nov 2018 01:12:20 +0300 Subject: [PATCH] Dont customize package.cpath in tests (#122) --- README.md | 2 +- tests/lua/run_tests | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 16f8b0c..90da179 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Requires C++14 compiler compliance. Tested with GCC 4.9+, clang 3.8 and Visual S 1. `git clone --recursive git@github.com:effil/effil.git effil` 2. `cd effil && mkdir build && cd build` 3. `cmake .. && make install` -4. Copy effil.lua and libeffil.so/libeffil.dylib to your project. +4. Copy effil.so to your project. ### From lua rocks `luarocks install effil` diff --git a/tests/lua/run_tests b/tests/lua/run_tests index dce6276..97f1f58 100755 --- a/tests/lua/run_tests +++ b/tests/lua/run_tests @@ -7,7 +7,6 @@ local src_path = scripts_path .. "/../.." package.path = ";" .. scripts_path .. "/?.lua;" .. src_path .. "/src/lua/?.lua;" .. src_path .. "/libs/u-test/?.lua" -package.cpath = "./?.so;" .. package.cpath require "type" require "gc"