source: git/libfac/tests/factortest @ 49a0f4

spielwiese
Last change on this file since 49a0f4 was 1a80b4, checked in by Hans Schönemann <hannes@…>, 27 years ago
This commit was generated by cvs2svn to compensate for changes in r229, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@230 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100755
File size: 2.4 KB
Line 
1#!/bin/csh
2# Make various tests for the factorization.
3
4set OS=`uname`
5if ( $OS == "Linux" ) then
6        set ECHO="/bin/echo -e"
7else if ( $OS == "SunOS" ) then
8        set ECHO=/usr/5bin/echo
9else
10        set ECHO=echo
11endif
12$ECHO "\n\ntesting univariate factorization:\c"
13$ECHO "\nf1  \c" 
14../test < f1 
15$ECHO "\nf2  \c"
16../test < f2
17$ECHO "\nf3  \c"
18../test < f3
19
20$ECHO "\n\ntesting multivariate factorization:"
21$ECHO "\nf4  \c"
22../test < f4
23$ECHO "\nf5  \c"
24../test < f5
25$ECHO "\nf6  \c"
26../test < f6
27$ECHO "\nf7  \c"
28../test < f7
29$ECHO "\nf8  \c"
30../test < f8
31$ECHO "\nf9  \c"
32../test < f9
33$ECHO "\nf10 \c"
34../test < f10
35#$ECHO "\nf11 \c"
36#../test < f11
37$ECHO "\nf12 \c"
38../test < f12
39$ECHO "\nf12 \c"
40../test < f13
41$ECHO "\nf14 \c"
42../test < f14
43$ECHO "\nf15 \c"
44../test < f15
45$ECHO "\nf16  -- skipping; takes long time.  See the Long-time section!\c"
46$ECHO "\nf17 \c"
47../test < f17
48$ECHO "\nf18 \c"
49../test < f18
50$ECHO "\nf19 \c"
51../test < f19
52$ECHO "\nf20 \c"
53../test < f20
54$ECHO "\nf21 \c"
55../test < f21
56$ECHO "\nf21a \c"
57../test < f21a
58$ECHO "\nf22 \c"
59../test < f22
60$ECHO "\nf23 \c"
61../test < f23
62$ECHO "\nf24 -- skipping; takes long time.  See the Long-time section!\c"
63$ECHO "\nf25 -- skipping; takes long time.  See the Long-time section!\c"
64$ECHO "\nf26 -- skipping; takes long time.  See the Long-time section!\c"
65$ECHO "\nf27 \c"
66../test < f27
67$ECHO "\nf28 -- skipping; takes long time.  See the Long-time section!\c"
68$ECHO "\nf29 -- Test suite not available.\c"
69#../test < f29
70$ECHO "\nf30 -- Test suite not available.\c"
71#../test < f30
72$ECHO "\nf31 -- Test suite not available.\c"
73#../test < f31
74$ECHO "\nf32 \c"
75../test < f32
76$ECHO "\nf33 \c"
77../test < f33
78$ECHO "\nf34 \c"
79../test < f34
80$ECHO "\nf35 -- skipping; takes long time.  See the Long-time section!\c"
81$ECHO "\nf36 \c"
82../test < f36
83$ECHO "\nf37 \c"
84../test < f37
85$ECHO "\nf38 \c"
86../test < f38
87$ECHO "\n"
88$ECHO "Tests from Gerhard Pfister:"
89$ECHO "p1   -- skipping; takes long time.  See the Long-time section!\c"
90$ECHO "\np2 \c"
91../test < p2
92$ECHO "\np3 \c"
93../test < p3
94$ECHO "\np4 \c"
95../test < p4
96$ECHO "\np5 \c"
97../test < p5.3
98
99$ECHO "\n" 
100# need-extensions section:
101$ECHO "\n Need-extensions section!\n"
102$ECHO "\nf39 \c"
103../test < f39
104$ECHO "\nf40 \c"
105../test < f40
106$ECHO "\nf41 \c"
107../test < f41
108$ECHO "\nf42 \c"
109../test < f42
110$ECHO "\nf43 \c"
111../test < f43
112
113
114$ECHO "\n"
115$ECHO 
116# long time section:
117$ECHO "\n Long-time section!\n"
118$ECHO "\n ... Skipping!\n"
Note: See TracBrowser for help on using the repository browser.