fix benches interfering with testing

This commit is contained in:
Torsten Ruger
2015-11-30 16:09:55 +02:00
parent dc560aaa5e
commit 19dd7b96d6
4 changed files with 8 additions and 2 deletions

18
test/bench/soml/word.rb Normal file
View File

@@ -0,0 +1,18 @@
require_relative 'helper'
class BenchWord < MiniTest::Test
include BenchTests
def test_hello
@main = <<HERE
int count = 100352 - 352
Word hello = "Hello there"
while_plus( count - 1)
hello.putstring()
count = count - 1
end
return 1
HERE
check_remote 1
end
end