Added a temporary script for use with git bisect to figure out when utf8 issue was introduced.

This commit is contained in:
Ward Fisher 2015-10-22 19:37:45 +00:00
parent b672e4c504
commit bc3aa1b650

13
git_bisect_test.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
rm -f build
mkdir build
pushd build
cmake .. -DENABLE_NETCDF_4=OFF -DENABLE_DAP=OFF -DENABLE_DISKLESS=OFF
make -j 4
cd ncdump
./tst_nccopy3.sh
RES=$?
popd
exit $RES