(a, base, condition)
| 54 | test_do_not_assert_on_non_int32(v,0); |
| 55 | |
| 56 | function test_base(a, base, condition) { |
| 57 | a[base + 1] = 1; |
| 58 | a[base + 4] = 2; |
| 59 | a[base + 3] = 3; |
| 60 | a[base + 2] = 4; |
| 61 | a[base + 4] = base + 4; |
| 62 | if (condition) { |
| 63 | a[base + 1] = 1; |
| 64 | a[base + 2] = 2; |
| 65 | a[base + 2] = 3; |
| 66 | a[base + 2] = 4; |
| 67 | a[base + 4] = base + 4; |
| 68 | } else { |
| 69 | a[base + 6] = 1; |
| 70 | a[base + 4] = 2; |
| 71 | a[base + 3] = 3; |
| 72 | a[base + 2] = 4; |
| 73 | a[base + 4] = base - 4; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | function check_test_base(a, base, condition) { |
| 78 | if (condition) { |
no outgoing calls
no test coverage detected