Index: src/trusted/validator_x86/testdata/32/direct-jump-16.test |
diff --git a/src/trusted/validator_x86/testdata/32/direct-jump-16.test b/src/trusted/validator_x86/testdata/32/direct-jump-16.test |
deleted file mode 100644 |
index ecadbd7206ebf2a25812945e5fcbc9dc46d67f15..0000000000000000000000000000000000000000 |
--- a/src/trusted/validator_x86/testdata/32/direct-jump-16.test |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-@hex: |
- # This file tests how we handle a 16-bit direct jump. In particular, it tests |
- # whether we actually disallow prefix 66 on the direct jump. |
- # |
- # Define direct (16-bit) jump, which NaCl doesn't allow |
- 66 e9 01 00 |
- |
- # Padding in case the parser of the previous instruction recognizes |
- # the wrong byte length for the jump constant. |
- 90 90 |
- |
-@nval: |
- VALIDATOR: 0: Bad prefix usage |
- *** <input> IS UNSAFE *** |
-@dis: |
- 00000000: 66 e9 invalid |
- 00000002: 01 00 add %ds:[%eax], %eax |
- 00000004: 90 nop |
- 00000005: 90 nop |
-@vdis: |
- 0: 66 e9 01 00 jmp 0x5 |
- 4: 90 nop |
- 5: 90 nop |
-@rdfa_output: |
- 0: [0] unrecognized instruction |
- return code: 1 |