aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/test_by_xed.sh
blob: 905b8a01776f442d09e8b5d0f2af1a142eda8ef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

set -e
XED=${XED:=xed}
CXX=${CXX:=g++}
PYTHON=${PYTHON:=python3}
echo $XED

if [ $# -ne 1 ]; then
  echo "./test_by_xed.sh <xbyak-cpp>"
  exit 1
fi

TARGET=$1

CFLAGS="-Wall -Wextra -I ../"

echo "test:" $TARGET
cp $TARGET tmp.cpp
$CXX $CFLAGS test_by_xed.cpp -o test_by_xed
./test_by_xed
$XED -64 -ir bin > out.txt
$PYTHON test_by_xed.py $TARGET out.txt