diff --git a/unit_test.sh b/unit_test.sh deleted file mode 100755 index ba0e97f..0000000 --- a/unit_test.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -for file in $1*/**/* -do - if [[ "$file" != *.a ]] ;then - echo $file - ./ft_nm $2 $file 2>&1 | cat > a - nm $2 $file 2>&1 | cat > b - diff a b - fi -done