mirror of
https://github.com/jfdelnero/HxCFloppyEmulator.git
synced 2026-07-28 04:06:36 +00:00
amiga adz, apple do/nib and apridisk formats.
This commit is contained in:
Binary file not shown.
@@ -67,12 +67,24 @@ echo "cee7770810257f2063b5765ff24c2525 C004.IMG" | md5sum -c - >> convert2_res.
|
|||||||
./hxcfe -finput:adc-cpm.td0 -foutput:C005.IMG -conv:RAW_LOADER
|
./hxcfe -finput:adc-cpm.td0 -foutput:C005.IMG -conv:RAW_LOADER
|
||||||
echo "ac12f9cfcd68ff364598507f7ca1503e C005.IMG" | md5sum -c - >> convert2_res.txt
|
echo "ac12f9cfcd68ff364598507f7ca1503e C005.IMG" | md5sum -c - >> convert2_res.txt
|
||||||
|
|
||||||
|
./hxcfe -finput:dos33_with_adt.do -foutput:C006.DO -conv:APPLE2_DO
|
||||||
|
echo "7c350e5da3672bca4abbdbe67fdaf14a C006.DO" | md5sum -c - >> convert2_res.txt
|
||||||
|
|
||||||
|
./hxcfe -finput:Apple_DOS_3_3_January_1983.do -foutput:C007.DO -conv:APPLE2_DO
|
||||||
|
echo "b13de32fd7a97d817744bf2dd71d5479 C007.DO" | md5sum -c - >> convert2_res.txt
|
||||||
|
|
||||||
|
./hxcfe -finput:Apple_DOS_3_3_January_1983.nib -foutput:C008.DO -conv:APPLE2_DO
|
||||||
|
echo "b13de32fd7a97d817744bf2dd71d5479 C008.DO" | md5sum -c - >> convert2_res.txt
|
||||||
|
|
||||||
|
./hxcfe -finput:apridisk.dsk -foutput:C009.IMG -conv:RAW_LOADER
|
||||||
|
echo "f35a690248f7afebc5180b4e81cceb88 C009.IMG" | md5sum -c - >> convert2_res.txt
|
||||||
|
|
||||||
export success_cnt2=`cat convert2_res.txt | grep ": OK" | wc -l`
|
export success_cnt2=`cat convert2_res.txt | grep ": OK" | wc -l`
|
||||||
|
|
||||||
export total_success=$(echo $(( $success_cnt + $success_cnt2 )))
|
export total_success=$(echo $(( $success_cnt + $success_cnt2 )))
|
||||||
echo Convert success count : $total_success
|
echo Convert success count : $total_success
|
||||||
|
|
||||||
if [ "$total_success" -ne "23" ]
|
if [ "$total_success" -ne "27" ]
|
||||||
then
|
then
|
||||||
echo "CONVERT $1 : FAILED" >> tests_results.txt
|
echo "CONVERT $1 : FAILED" >> tests_results.txt
|
||||||
echo "One or more tests have failed !";
|
echo "One or more tests have failed !";
|
||||||
|
|||||||
Executable → Regular
+10
-2
@@ -21,15 +21,23 @@ rm *_T.ADF
|
|||||||
#./hxcfe -finput:I009.XML -foutput:I009_T.ADF -conv:RAW_LOADER
|
#./hxcfe -finput:I009.XML -foutput:I009_T.ADF -conv:RAW_LOADER
|
||||||
|
|
||||||
echo > convert_amiga_res.txt
|
echo > convert_amiga_res.txt
|
||||||
|
echo > convert2_amiga_res.txt
|
||||||
|
|
||||||
for i in ./*_T.ADF; do diff -s "$i" I001_T.ADF >> convert_amiga_res.txt; done
|
for i in ./*_T.ADF; do diff -s "$i" I001_T.ADF >> convert_amiga_res.txt; done
|
||||||
|
|
||||||
cat convert_amiga_res.txt
|
cat convert_amiga_res.txt
|
||||||
|
|
||||||
export success_cnt=`cat convert_amiga_res.txt | grep "identical" | wc -l`
|
export success_cnt=`cat convert_amiga_res.txt | grep "identical" | wc -l`
|
||||||
|
|
||||||
echo Convert success count : $success_cnt
|
./hxcfe -finput:ADOS_1760kB.adz -foutput:C001.ADF -conv:RAW_LOADER
|
||||||
|
echo "2e9c78b254515902a236025ebeb718bf C001.ADF" | md5sum -c - >> convert2_amiga_res.txt
|
||||||
|
|
||||||
if [ "$success_cnt" -ne "8" ]
|
export success_cnt2=`cat convert2_amiga_res.txt | grep ": OK" | wc -l`
|
||||||
|
|
||||||
|
export total_success=$(echo $(( $success_cnt + $success_cnt2 )))
|
||||||
|
echo Convert success count : $total_success
|
||||||
|
|
||||||
|
if [ "$total_success" -ne "9" ]
|
||||||
then
|
then
|
||||||
echo "CONVERT $1 : FAILED" >> tests_results.txt
|
echo "CONVERT $1 : FAILED" >> tests_results.txt
|
||||||
echo "One or more tests have failed !";
|
echo "One or more tests have failed !";
|
||||||
|
|||||||
Reference in New Issue
Block a user