Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | # Test 1: Basic bitwise operation | ||||
4 | bitwise --no-color -w b 0x42 > test.out | ||||
5 | |||||
6 | # Compare expected output with actual output | ||||
7 | |||||
8 | if ! cmp test.out ptest.out.expected; then | ||||
9 | echo "[FAIL] Test 1: Basic bitwise operation" | ||||
10 | exit 1 | ||||
11 | fi |