Skip to content

Commit e82b04b

Browse files
committed
test
1 parent 08c63c5 commit e82b04b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Formula/phylonium.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def install
3939
assert_match version.to_s, shell_output("#{bin}/phylonium --version 2>&1")
4040

4141
resource("simf").stage do
42-
system "c++", "-std=c++14", "-Wall", "-Wextra", "simf.cxx", "-o", "simf"
42+
system ENV.cxx.to_s, "-std=c++14", "-Wall", "-Wextra", "simf.cxx", "-o", "simf"
4343
system "./simf", "-s", "1729", "-l", "100000", "-p", "simple"
4444
system "#{bin}/phylonium simple0.fasta simple1.fasta > /dev/null"
4545
rm "simple0.fasta"

Formula/raptor.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def install
4141
end
4242

4343
test do
44-
system "raptor", "--version"
45-
system "raptor", "build", "--help"
46-
system "raptor", "search", "--help"
44+
system "#{bin}/raptor", "--version"
45+
system "#{bin}/raptor", "build", "--help"
46+
system "#{bin}/raptor", "search", "--help"
4747
end
4848
end

0 commit comments

Comments
 (0)