2 # -----------------------------------------------------------------------------
5 use lib
($0 =~ m
|^(.*/)| ?
$1 : ".");
8 my $file = "$samples/sheet-formatting-tests.gnumeric";
10 if (&subtest
("gnumeric")) {
11 &message
("Check sheet-formatting gnumeric roundtrip.");
12 &test_roundtrip
($file,
13 'format' => 'Gnumeric_XmlIO:sax',
17 if (&subtest
("ods")) {
18 &message
("Check sheet-formatting ods roundtrip.");
19 &test_roundtrip
($file,
20 'format' => 'Gnumeric_OpenCalc:odf',
22 'filter2' => 'std:drop_generator');
25 if (&subtest
("biff7")) {
26 &message
("Check sheet-formatting xls/BIFF7 roundtrip.");
27 &test_roundtrip
($file,
28 'format' => 'Gnumeric_Excel:excel_biff7',
30 'resize' => '16384x256',
31 'filter2' => 'std:drop_codepage');
34 if (&subtest
("biff8")) {
35 &message
("Check sheet-formatting xls/BIFF8 roundtrip.");
36 &test_roundtrip
($file,
37 'format' => 'Gnumeric_Excel:excel_biff8',
39 'filter2' => 'std:drop_codepage');
42 if (&subtest
("xlsx")) {
43 &message
("Check sheet-formatting xlsx roundtrip.");
44 &test_roundtrip
($file,
45 'format' => 'Gnumeric_Excel:xlsx',
47 'resize' => '1048576x16384');