Added tests for stdlib subroutine `strlen`.
[vvhitespace] / stdlib_tests / vv_test.py
index cf09690..a121659 100755 (executable)
@@ -28,6 +28,15 @@ tests = [
         ['2003_memset', '', '32:\t+42\n33:\t+42\n'],
         ['2004_memcpy', '', '34:\t+42\n35:\t+42\n'],
         ['2005_memcmp', '', '+1'],
         ['2003_memset', '', '32:\t+42\n33:\t+42\n'],
         ['2004_memcpy', '', '34:\t+42\n35:\t+42\n'],
         ['2005_memcmp', '', '+1'],
+        ['2006_memsrch', '', '+32'],
+        ['2007_memrand', '', ''],
+        ['3001_not', '', '-1+0-6148914691236517206+6148914691236517205'],
+        ['3002_lshift', '', '+1+2+4611686018427387904-9223372036854775808-9223372036854775808+0'],
+        ['3003_rshift', '', '+1+1+1-4611686018427387903-576460752303423478-1-1'],
+        ['3004_and', '', '+0+0+1+1+42'],
+        ['3005_or', '', '+0+1+1-1-1'],
+        ['3006_xor', '', '+0+1+0-2-1'],
+        ['4001_strlen', '', '+11'],
         ] 
 
 for test in tests:
         ] 
 
 for test in tests: