We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53eacfb commit d8ef22dCopy full SHA for d8ef22d
1 file changed
bintest/mruby-cli.rb
@@ -35,6 +35,11 @@
35
assert_true status.success?, "Process did not exit cleanly"
36
assert_include output, "Hello World"
37
38
+ %w(x86_64-pc-linux-gnu i686-pc-linux-gnu).each do |host|
39
+ output, status = Open3.capture2("file mruby/build/x86_64-pc-linux-gnu/bin/#{app_name}")
40
+ assert_include output, ", stripped"
41
+ end
42
+
43
output, status = Open3.capture2("rake test:bintest")
44
45
0 commit comments