18 lines
232 B
Bash
18 lines
232 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
source ./config.sh
|
||
|
source ./functions.sh
|
||
|
|
||
|
DST="foo.tga"
|
||
|
|
||
|
$COMDIR/tga_tools version
|
||
|
|
||
|
|
||
|
test_des_xpers "zero"
|
||
|
test_des_xpers "un"
|
||
|
test_des_xpers "deux"
|
||
|
test_des_xpers "trois"
|
||
|
test_des_xpers "quatre"
|
||
|
test_des_xpers "cinq"
|
||
|
|