mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
526 B
Bash
20 lines
526 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "testing make_incremental_updates.py"
|
||
|
python ../make_incremental_updates.py -f testpatchfile.txt
|
||
|
|
||
|
echo "diffing ref.mar and test.mar"
|
||
|
./diffmar.sh ref.mar test.mar
|
||
|
echo "diffing ref-mac.mar and test-mac.mar"
|
||
|
./diffmar.sh ref-mac.mar test-mac.mar
|
||
|
|
||
|
|
||
|
echo "testing make_incremental_updates_mar.py"
|
||
|
python ../make_incremental_updates_mar.py -f testpatchfile.txt
|
||
|
|
||
|
echo "diffing ref.mar and test.mar"
|
||
|
./diffmar.sh ref.mar test.mar
|
||
|
echo "diffing ref-mac.mar and test-mac.mar"
|
||
|
./diffmar.sh ref-mac.mar test-mac.mar
|
||
|
|