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