aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_bindfs.rb
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2016-11-17 08:51:50 +0000
committerGitHub <noreply@github.com>2016-11-17 08:51:50 +0000
commitd78ba82067a164badcf193b11a8dbcbb80468f92 (patch)
tree1c7601a9e0768be96dfcf751b29105d3a77a6e05 /tests/test_bindfs.rb
parent10ac49f8aab2816a3b964db12ab284ad8a9c08a1 (diff)
parent37380cba4379897674d0ff8c5115f10691d4474a (diff)
downloadbindfs-d78ba82067a164badcf193b11a8dbcbb80468f92.tar.gz
Merge pull request #45 from dandedrick/fix-out-of-place-build
tests: fix building out of place
Diffstat (limited to 'tests/test_bindfs.rb')
-rwxr-xr-xtests/test_bindfs.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/test_bindfs.rb b/tests/test_bindfs.rb
index 48611b2..39f709e 100755
--- a/tests/test_bindfs.rb
+++ b/tests/test_bindfs.rb
@@ -18,7 +18,10 @@
# along with bindfs. If not, see <http://www.gnu.org/licenses/>.
#
-require './common.rb'
+# if we are being run by make check it will set srcdir and we should use it
+localsrc_path = ENV['srcdir'] || '.'
+
+require localsrc_path + '/common.rb'
include Errno
@@ -39,7 +42,7 @@ $nobody_uid = nobody_uid = Etc.getpwnam('nobody').uid
$nobody_gid = nobody_gid = Etc.getpwnam('nobody').gid
$nobody_group = nobody_group = Etc.getgrgid(nobody_gid).name
-$tests_dir = File.dirname(File.realpath(__FILE__))
+$tests_dir = File.realpath('.')
testenv("") do