summaryrefslogtreecommitdiff
path: root/infrastructure/makebuildenv.pl.in
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2014-12-26 23:16:39 +0000
committerChris Wilson <chris+github@qwirx.com>2014-12-26 23:16:39 +0000
commiteab3cd7bb2f08c7cec156cce5d1b5be881d5bbf1 (patch)
treef9f1cd7453f76ae1cc6d8ddf29d5fc0efb264958 /infrastructure/makebuildenv.pl.in
parent1ee26f177e879ab36dada9f81fc41a95dad0ebbf (diff)
Rename test executable to fix PATH conflict with /usr/bin/test on Cygwin.
Diffstat (limited to 'infrastructure/makebuildenv.pl.in')
-rwxr-xr-xinfrastructure/makebuildenv.pl.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/infrastructure/makebuildenv.pl.in b/infrastructure/makebuildenv.pl.in
index 0ad1fdae..fef9d348 100755
--- a/infrastructure/makebuildenv.pl.in
+++ b/infrastructure/makebuildenv.pl.in
@@ -478,9 +478,9 @@ __E
}
writetestfile("$mod/_t", "GLIBCXX_FORCE_NEW=1 ".
- './test' . $platform_exe_ext . ' "$@"', $mod);
+ './_test' . $platform_exe_ext . ' "$@"', $mod);
writetestfile("$mod/_t-gdb", "GLIBCXX_FORCE_NEW=1 ".
- 'gdb ./test' . $platform_exe_ext . ' "$@"', $mod);
+ 'gdb ./_test' . $platform_exe_ext . ' "$@"', $mod);
}
@@ -535,7 +535,7 @@ __E
$end_target .= $platform_exe_ext;
}
- $end_target = 'test'.$platform_exe_ext if $type eq 'test';
+ $end_target = '_test'.$platform_exe_ext if $type eq 'test';
# adjust for outdir
$end_target = '$(OUTDIR)/' . $end_target;