From f07f47651884ccb30a1493ed69d397e1f43f5267 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 2 Mar 2022 18:37:53 +0900 Subject: [PATCH] Exclude binstubs tests When relative loading is enabled, the executable ruby is expected installed at the same directory as the binstub. --- test/excludes/TestGem.rb | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test/excludes/TestGem.rb diff --git a/test/excludes/TestGem.rb b/test/excludes/TestGem.rb new file mode 100644 index 0000000000..042af26eff --- /dev/null +++ b/test/excludes/TestGem.rb @@ -0,0 +1,4 @@ +if RbConfig::CONFIG["LIBRUBY_RELATIVE"] == "yes" + exclude(/test_looks_for_gemdeps_files_automatically_from_binstubs/, + "can't test before installation") +end