]> Nishi Git Mirror - gwion.git/commitdiff
testing
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 19 Jan 2020 17:43:22 +0000 (18:43 +0100)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 19 Jan 2020 17:43:22 +0000 (18:43 +0100)
benchmark/method-call.ck.bug [moved from benchmark/method-call.ck with 100% similarity]
benchmark/string-equals.py
scripts/benchmark.sh

index 8829b5c21527e96460e1daf7eb26946001d73735..7f1e23db959aef152c1523692f04b48008d947b7 100644 (file)
@@ -1,8 +1,5 @@
 from __future__ import print_function
 
-import time
-start = time.clock()
-
 count = 0
 for i in range(0, 1000000):
   if "abc" == "abc":
@@ -32,4 +29,3 @@ for i in range(0, 1000000):
       count = count + 1
 
 print(count)
-print("elapsed: " + str(time.clock() - start))
index 3d0d087d3aaa0e128e606daf4c9cd448270d5001..2bfa1d7d6bf4255f3c438355601c1adcc6fa79b8 100644 (file)
@@ -1,7 +1,7 @@
 #!/bin/bash
 
-language=("gwion" "wren" "lua")
-extension=("gw" "wren" "lua")
+language=("gwion" "wren" "lua" "python" "chuck")
+extension=("gw" "wren" "lua" "py" "ck")
 test_dir="benchmark"
 plot_script="scripts/bench.plot"
 : "${repeats:=10}"