~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to tests/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-11-28 03:03:42 UTC
  • mfrom: (8.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20121128030342-21zanj8354gas5gr
Tags: 8.20-3ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Make 'uname -i -p' return the real processor/hardware, instead of
    unknown.
  - Build-depend on gettext:any instead of on gettext, so that apt-get can
    properly resolve build-dependencies on the tool when cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in -*-Makefile-*-.
2
 
 
3
 
# Sort in traditional ASCII order, regardless of the current locale;
4
 
# otherwise we may get into trouble with distinct strings that the
5
 
# current locale considers to be equal.
6
 
ASSORT = LC_ALL=C sort
7
 
 
8
 
EXTRA_DIST =            \
9
 
  Coreutils.pm          \
10
 
  CuSkip.pm             \
11
 
  CuTmpdir.pm           \
12
 
  check.mk              \
13
 
  d_type-check          \
14
 
  envvar-check          \
15
 
  filefrag-extent-compare \
16
 
  fiemap-capable        \
17
 
  init.cfg              \
18
 
  init.sh               \
19
 
  lang-default          \
20
 
  other-fs-tmpdir       \
21
 
  sample-test           \
22
 
  shell-or-perl         \
23
 
  $(pr_data)
24
 
 
25
 
root_tests =                                    \
26
 
  chown/basic                                   \
27
 
  cp/cp-a-selinux                               \
28
 
  cp/preserve-gid                               \
29
 
  cp/special-bits                               \
30
 
  cp/cp-mv-enotsup-xattr                        \
31
 
  cp/capability                                 \
32
 
  cp/sparse-fiemap                              \
33
 
  dd/skip-seek-past-dev                         \
34
 
  install/install-C-root                        \
35
 
  ls/capability                                 \
36
 
  ls/nameless-uid                               \
37
 
  misc/chcon                                    \
38
 
  misc/chroot-credentials                       \
39
 
  misc/selinux                                  \
40
 
  misc/truncate-owned-by-other                  \
41
 
  mkdir/writable-under-readonly                 \
42
 
  mv/sticky-to-xpart                            \
43
 
  rm/fail-2eperm                                \
44
 
  rm/no-give-up                                 \
45
 
  rm/one-file-system                            \
46
 
  rm/read-only                                  \
47
 
  tail-2/append-only                            \
48
 
  touch/now-owned-by-other
49
 
 
50
 
.PHONY: check-root
51
 
check-root:
52
 
        $(MAKE) check TESTS='$(root_tests)'
53
 
 
54
 
check-recursive: root-hint
55
 
 
56
 
# Advertise `check-root' target.
57
 
.PHONY: root-hint
58
 
root-hint:
59
 
        @echo '***********************************************************'
60
 
        @echo "NOTICE: Some tests may be run only as root."
61
 
        @echo "  See the 'Running tests as root' section in README."
62
 
        @echo '***********************************************************'
63
 
 
64
 
EXTRA_DIST += $(TESTS)
65
 
 
66
 
# Do not choose a name that is a shell keyword like 'if', or a
67
 
# commonly-used utility like 'cat' or 'test', as the name of a test.
68
 
# Otherwise, VPATH builds will fail on hosts like Solaris, since they
69
 
# will expand 'if test ...' to 'if .../test ...', and the '.../test'
70
 
# will execute the test script rather than the standard utility.
71
 
 
72
 
# Notes on the ordering of these tests:
73
 
# Place early in the list tests of the tools that
74
 
# are most commonly used in test scripts themselves.
75
 
# E.g., nearly every test script uses rm and chmod.
76
 
# help-version comes early because it's a basic sanity test.
77
 
# Put seq early, since lots of other tests use it.
78
 
# Put tests that sleep early, but not all together, so in parallel builds
79
 
# they share time with tests that burn CPU, not with others that sleep.
80
 
# Put head-elide-tail early, because it's long-running.
81
 
 
82
 
TESTS =                                         \
83
 
  misc/help-version                             \
84
 
  tail-2/inotify-race                           \
85
 
  misc/invalid-opt                              \
86
 
  rm/ext3-perf                                  \
87
 
  rm/cycle                                      \
88
 
  cp/link-heap                                  \
89
 
  tail-2/inotify-hash-abuse                     \
90
 
  tail-2/inotify-hash-abuse2                    \
91
 
  tail-2/F-vs-missing                           \
92
 
  tail-2/F-vs-rename                            \
93
 
  tail-2/inotify-rotate                         \
94
 
  chmod/no-x                                    \
95
 
  chgrp/basic                                   \
96
 
  rm/dangling-symlink                           \
97
 
  misc/ls-time                                  \
98
 
  rm/deep-1                                     \
99
 
  rm/deep-2                                     \
100
 
  rm/dir-no-w                                   \
101
 
  rm/dir-nonrecur                               \
102
 
  rm/dot-rel                                    \
103
 
  rm/isatty                                     \
104
 
  rm/empty-inacc                                \
105
 
  rm/empty-name                                 \
106
 
  rm/f-1                                        \
107
 
  rm/fail-eacces                                \
108
 
  rm/fail-eperm                                 \
109
 
  tail-2/assert                                 \
110
 
  rm/hash                                       \
111
 
  rm/i-1                                        \
112
 
  rm/i-never                                    \
113
 
  rm/i-no-r                                     \
114
 
  tail-2/infloop-1                              \
115
 
  rm/ignorable                                  \
116
 
  rm/inaccessible                               \
117
 
  rm/interactive-always                         \
118
 
  rm/interactive-once                           \
119
 
  rm/ir-1                                       \
120
 
  rm/one-file-system2                           \
121
 
  rm/r-1                                        \
122
 
  rm/r-2                                        \
123
 
  rm/r-3                                        \
124
 
  rm/r-4                                        \
125
 
  rm/readdir-bug                                \
126
 
  rm/rm1                                        \
127
 
  touch/empty-file                              \
128
 
  rm/rm2                                        \
129
 
  rm/rm3                                        \
130
 
  rm/rm4                                        \
131
 
  rm/rm5                                        \
132
 
  rm/sunos-1                                    \
133
 
  rm/unread2                                    \
134
 
  rm/unread3                                    \
135
 
  rm/unreadable                                 \
136
 
  rm/v-slash                                    \
137
 
  rm/many-dir-entries-vs-OOM                    \
138
 
  chgrp/default-no-deref                        \
139
 
  chgrp/deref                                   \
140
 
  chgrp/no-x                                    \
141
 
  chgrp/posix-H                                 \
142
 
  chgrp/recurse                                 \
143
 
  misc/env                                      \
144
 
  misc/ptx                                      \
145
 
  misc/test                                     \
146
 
  misc/seq                                      \
147
 
  misc/seq-long-double                          \
148
 
  misc/head                                     \
149
 
  misc/head-elide-tail                          \
150
 
  tail-2/tail-n0f                               \
151
 
  misc/ls-misc                                  \
152
 
  misc/date                                     \
153
 
  misc/date-next-dow                            \
154
 
  misc/ptx-overrun                              \
155
 
  misc/xstrtol                                  \
156
 
  tail-2/pid                                    \
157
 
  misc/od                                       \
158
 
  misc/od-float                                 \
159
 
  misc/mktemp                                   \
160
 
  misc/arch                                     \
161
 
  misc/pr                                       \
162
 
  misc/join                                     \
163
 
  pr/pr-tests                                   \
164
 
  misc/df-P                                     \
165
 
  misc/pwd-option                               \
166
 
  misc/chcon-fail                               \
167
 
  misc/cut                                      \
168
 
  misc/wc                                       \
169
 
  misc/wc-files0-from                           \
170
 
  misc/wc-files0                                \
171
 
  misc/wc-parallel                              \
172
 
  misc/cat-proc                                 \
173
 
  misc/cat-buf                                  \
174
 
  misc/base64                                   \
175
 
  misc/basename                                 \
176
 
  misc/close-stdout                             \
177
 
  misc/chroot-fail                              \
178
 
  misc/comm                                     \
179
 
  misc/csplit                                   \
180
 
  misc/csplit-1000                              \
181
 
  misc/csplit-heap                              \
182
 
  misc/date-sec                                 \
183
 
  misc/dircolors                                \
184
 
  misc/df                                       \
185
 
  misc/dirname                                  \
186
 
  misc/env-null                                 \
187
 
  misc/expand                                   \
188
 
  misc/expr                                     \
189
 
  misc/factor                                   \
190
 
  misc/false-status                             \
191
 
  misc/fmt                                      \
192
 
  misc/fmt-long-line                            \
193
 
  misc/fold                                     \
194
 
  misc/groups-dash                              \
195
 
  misc/groups-version                           \
196
 
  misc/head-c                                   \
197
 
  misc/head-pos                                 \
198
 
  misc/id-context                               \
199
 
  misc/id-groups                                \
200
 
  misc/md5sum                                   \
201
 
  misc/md5sum-newline                           \
202
 
  misc/md5sum-parallel                          \
203
 
  misc/mknod                                    \
204
 
  misc/nice                                     \
205
 
  misc/nice-fail                                \
206
 
  misc/nl                                       \
207
 
  misc/nohup                                    \
208
 
  misc/nproc-avail                              \
209
 
  misc/nproc-positive                           \
210
 
  misc/od-N                                     \
211
 
  misc/od-multiple-t                            \
212
 
  misc/od-x8                                    \
213
 
  misc/paste                                    \
214
 
  misc/pathchk1                                 \
215
 
  misc/printenv                                 \
216
 
  misc/printf                                   \
217
 
  misc/printf-cov                               \
218
 
  misc/printf-hex                               \
219
 
  misc/printf-surprise                          \
220
 
  misc/pwd-long                                 \
221
 
  misc/readlink-fp-loop                         \
222
 
  misc/runcon-no-reorder                        \
223
 
  misc/sha1sum                                  \
224
 
  misc/sha1sum-vec                              \
225
 
  misc/sha224sum                                \
226
 
  misc/sha256sum                                \
227
 
  misc/sha384sum                                \
228
 
  misc/sha512sum                                \
229
 
  misc/shred-exact                              \
230
 
  misc/shred-passes                             \
231
 
  misc/shred-remove                             \
232
 
  misc/shuf                                     \
233
 
  misc/sort                                     \
234
 
  misc/sort-benchmark-random                    \
235
 
  misc/sort-compress                            \
236
 
  misc/sort-compress-hang                       \
237
 
  misc/sort-compress-proc                       \
238
 
  misc/sort-continue                            \
239
 
  misc/sort-debug-keys                          \
240
 
  misc/sort-debug-warn                          \
241
 
  misc/sort-files0-from                         \
242
 
  misc/sort-float                               \
243
 
  misc/sort-merge                               \
244
 
  misc/sort-merge-fdlimit                       \
245
 
  misc/sort-month                               \
246
 
  misc/sort-rand                                \
247
 
  misc/sort-spinlock-abuse                      \
248
 
  misc/sort-stale-thread-mem                    \
249
 
  misc/sort-unique                              \
250
 
  misc/sort-unique-segv                         \
251
 
  misc/sort-version                             \
252
 
  split/filter                                  \
253
 
  split/suffix-length                           \
254
 
  split/b-chunk                                 \
255
 
  split/fail                                    \
256
 
  split/lines                                   \
257
 
  split/l-chunk                                 \
258
 
  split/r-chunk                                 \
259
 
  misc/stat-birthtime                           \
260
 
  misc/stat-fmt                                 \
261
 
  misc/stat-hyphen                              \
262
 
  misc/stat-mount                               \
263
 
  misc/stat-nanoseconds                         \
264
 
  misc/stat-printf                              \
265
 
  misc/stat-slash                               \
266
 
  misc/stdbuf                                   \
267
 
  misc/stty                                     \
268
 
  misc/stty-invalid                             \
269
 
  misc/stty-row-col                             \
270
 
  misc/su-fail                                  \
271
 
  misc/sum                                      \
272
 
  misc/sum-sysv                                 \
273
 
  misc/tac                                      \
274
 
  misc/tac-continue                             \
275
 
  misc/tail                                     \
276
 
  misc/tee                                      \
277
 
  misc/tee-dash                                 \
278
 
  misc/test-diag                                \
279
 
  misc/timeout                                  \
280
 
  misc/timeout-group                            \
281
 
  misc/timeout-parameters                       \
282
 
  misc/tr                                       \
283
 
  misc/tr-case-class                            \
284
 
  misc/truncate-dangling-symlink                \
285
 
  misc/truncate-dir-fail                        \
286
 
  misc/truncate-fail-diag                       \
287
 
  misc/truncate-fifo                            \
288
 
  misc/truncate-no-create-missing               \
289
 
  misc/truncate-overflow                        \
290
 
  misc/truncate-parameters                      \
291
 
  misc/truncate-relative                        \
292
 
  misc/tsort                                    \
293
 
  misc/tty-eof                                  \
294
 
  misc/unexpand                                 \
295
 
  misc/uniq                                     \
296
 
  misc/uniq-perf                                \
297
 
  misc/xattr                                    \
298
 
  tail-2/wait                                   \
299
 
  chmod/c-option                                \
300
 
  chmod/equal-x                                 \
301
 
  chmod/equals                                  \
302
 
  chmod/inaccessible                            \
303
 
  chmod/octal                                   \
304
 
  chmod/setgid                                  \
305
 
  chmod/silent                                  \
306
 
  chmod/thru-dangling                           \
307
 
  chmod/umask-x                                 \
308
 
  chmod/usage                                   \
309
 
  chown/deref                                   \
310
 
  chown/preserve-root                           \
311
 
  chown/separator                               \
312
 
  cp/abuse                                      \
313
 
  cp/acl                                        \
314
 
  cp/backup-1                                   \
315
 
  cp/backup-dir                                 \
316
 
  cp/backup-is-src                              \
317
 
  cp/cp-HL                                      \
318
 
  cp/cp-deref                                   \
319
 
  cp/cp-i                                       \
320
 
  cp/cp-mv-backup                               \
321
 
  cp/cp-parents                                 \
322
 
  cp/deref-slink                                \
323
 
  cp/dir-rm-dest                                \
324
 
  cp/dir-slash                                  \
325
 
  cp/dir-vs-file                                \
326
 
  cp/existing-perm-dir                          \
327
 
  cp/existing-perm-race                         \
328
 
  cp/fail-perm                                  \
329
 
  cp/fiemap-empty                               \
330
 
  cp/fiemap-perf                                \
331
 
  cp/fiemap-2                                   \
332
 
  cp/file-perm-race                             \
333
 
  cp/into-self                                  \
334
 
  cp/link                                       \
335
 
  cp/link-no-deref                              \
336
 
  cp/link-preserve                              \
337
 
  cp/link-symlink                               \
338
 
  cp/no-deref-link1                             \
339
 
  cp/no-deref-link2                             \
340
 
  cp/no-deref-link3                             \
341
 
  cp/parent-perm                                \
342
 
  cp/parent-perm-race                           \
343
 
  cp/perm                                       \
344
 
  cp/preserve-2                                 \
345
 
  cp/preserve-link                              \
346
 
  cp/preserve-slink-time                        \
347
 
  cp/proc-short-read                            \
348
 
  cp/proc-zero-len                              \
349
 
  cp/r-vs-symlink                               \
350
 
  cp/reflink-auto                               \
351
 
  cp/reflink-perm                               \
352
 
  cp/same-file                                  \
353
 
  cp/slink-2-slink                              \
354
 
  cp/sparse                                     \
355
 
  cp/sparse-to-pipe                             \
356
 
  cp/special-f                                  \
357
 
  cp/src-base-dot                               \
358
 
  cp/symlink-slash                              \
359
 
  cp/thru-dangling                              \
360
 
  df/unreadable                                 \
361
 
  dd/direct                                     \
362
 
  dd/misc                                       \
363
 
  dd/nocache                                    \
364
 
  dd/not-rewound                                \
365
 
  dd/reblock                                    \
366
 
  dd/skip-seek                                  \
367
 
  dd/skip-seek2                                 \
368
 
  dd/skip-seek-past-file                        \
369
 
  dd/stderr                                     \
370
 
  dd/unblock                                    \
371
 
  dd/unblock-sync                               \
372
 
  df/total-verify                               \
373
 
  du/2g                                         \
374
 
  du/8gb                                        \
375
 
  du/basic                                      \
376
 
  du/bigtime                                    \
377
 
  du/deref                                      \
378
 
  du/deref-args                                 \
379
 
  du/exclude                                    \
380
 
  du/fd-leak                                    \
381
 
  du/files0-from                                \
382
 
  du/files0-from-dir                            \
383
 
  du/hard-link                                  \
384
 
  du/inacc-dest                                 \
385
 
  du/inacc-dir                                  \
386
 
  du/inaccessible-cwd                           \
387
 
  du/long-from-unreadable                       \
388
 
  du/long-sloop                                 \
389
 
  du/max-depth                                  \
390
 
  du/move-dir-while-traversing                  \
391
 
  du/no-deref                                   \
392
 
  du/no-x                                       \
393
 
  du/one-file-system                            \
394
 
  du/restore-wd                                 \
395
 
  du/slash                                      \
396
 
  du/slink                                      \
397
 
  du/trailing-slash                             \
398
 
  du/two-args                                   \
399
 
  id/no-context                                 \
400
 
  install/basic-1                               \
401
 
  install/create-leading                        \
402
 
  install/d-slashdot                            \
403
 
  install/install-C                             \
404
 
  install/install-C-selinux                     \
405
 
  install/strip-program                         \
406
 
  install/trap                                  \
407
 
  ln/backup-1                                   \
408
 
  ln/hard-backup                                \
409
 
  ln/hard-to-sym                                \
410
 
  ln/misc                                       \
411
 
  ln/sf-1                                       \
412
 
  ln/slash-decorated-nonexistent-dest           \
413
 
  ln/target-1                                   \
414
 
  ls/abmon-align                                \
415
 
  ls/color-clear-to-eol                         \
416
 
  ls/color-dtype-dir                            \
417
 
  ls/color-norm                                 \
418
 
  ls/dangle                                     \
419
 
  ls/dired                                      \
420
 
  ls/file-type                                  \
421
 
  ls/follow-slink                               \
422
 
  ls/infloop                                    \
423
 
  ls/inode                                      \
424
 
  ls/m-option                                   \
425
 
  ls/multihardlink                              \
426
 
  ls/no-arg                                     \
427
 
  ls/no-cap                                     \
428
 
  ls/proc-selinux-segfault                      \
429
 
  ls/readdir-mountpoint-inode                   \
430
 
  ls/recursive                                  \
431
 
  ls/rt-1                                       \
432
 
  ls/stat-dtype                                 \
433
 
  ls/stat-failed                                \
434
 
  ls/stat-free-color                            \
435
 
  ls/stat-free-symlinks                         \
436
 
  ls/stat-vs-dirent                             \
437
 
  ls/symlink-slash                              \
438
 
  ls/x-option                                   \
439
 
  mkdir/p-1                                     \
440
 
  mkdir/p-2                                     \
441
 
  mkdir/p-3                                     \
442
 
  mkdir/p-slashdot                              \
443
 
  mkdir/p-thru-slink                            \
444
 
  mkdir/p-v                                     \
445
 
  mkdir/parents                                 \
446
 
  mkdir/perm                                    \
447
 
  mkdir/selinux                                 \
448
 
  mkdir/special-1                               \
449
 
  mkdir/t-slash                                 \
450
 
  mv/acl                                        \
451
 
  mv/atomic                                     \
452
 
  mv/atomic2                                    \
453
 
  mv/backup-dir                                 \
454
 
  mv/backup-is-src                              \
455
 
  mv/childproof                                 \
456
 
  mv/diag                                       \
457
 
  mv/dir-file                                   \
458
 
  mv/dir2dir                                    \
459
 
  mv/dup-source                                 \
460
 
  mv/force                                      \
461
 
  mv/hard-2                                     \
462
 
  mv/hard-3                                     \
463
 
  mv/hard-4                                     \
464
 
  mv/hard-link-1                                \
465
 
  mv/hard-verbose                               \
466
 
  mv/i-1                                        \
467
 
  mv/i-2                                        \
468
 
  mv/i-3                                        \
469
 
  mv/i-4                                        \
470
 
  mv/i-5                                        \
471
 
  mv/i-link-no                                  \
472
 
  mv/into-self                                  \
473
 
  mv/into-self-2                                \
474
 
  mv/into-self-3                                \
475
 
  mv/into-self-4                                \
476
 
  mv/leak-fd                                    \
477
 
  mv/mv-n                                       \
478
 
  mv/mv-special-1                               \
479
 
  mv/no-target-dir                              \
480
 
  mv/part-fail                                  \
481
 
  mv/part-hardlink                              \
482
 
  mv/part-rename                                \
483
 
  mv/part-symlink                               \
484
 
  mv/partition-perm                             \
485
 
  mv/perm-1                                     \
486
 
  mv/to-symlink                                 \
487
 
  mv/trailing-slash                             \
488
 
  mv/update                                     \
489
 
  readlink/can-e                                \
490
 
  readlink/can-f                                \
491
 
  readlink/can-m                                \
492
 
  readlink/rl-1                                 \
493
 
  rmdir/fail-perm                               \
494
 
  rmdir/ignore                                  \
495
 
  rmdir/t-slash                                 \
496
 
  tail-2/assert-2                               \
497
 
  tail-2/big-4gb                                \
498
 
  tail-2/flush-initial                          \
499
 
  tail-2/follow-name                            \
500
 
  tail-2/follow-stdin                           \
501
 
  tail-2/pipe-f                                 \
502
 
  tail-2/pipe-f2                                \
503
 
  tail-2/proc-ksyms                             \
504
 
  tail-2/start-middle                           \
505
 
  touch/60-seconds                              \
506
 
  touch/dangling-symlink                        \
507
 
  touch/dir-1                                   \
508
 
  touch/fail-diag                               \
509
 
  touch/fifo                                    \
510
 
  touch/no-create-missing                       \
511
 
  touch/no-dereference                          \
512
 
  touch/no-rights                               \
513
 
  touch/not-owner                               \
514
 
  touch/obsolescent                             \
515
 
  touch/read-only                               \
516
 
  touch/relative                                \
517
 
  touch/trailing-slash                          \
518
 
  $(root_tests)
519
 
 
520
 
pr_data =                                       \
521
 
  pr/0F                                         \
522
 
  pr/0FF                                        \
523
 
  pr/0FFnt                                      \
524
 
  pr/0FFt                                       \
525
 
  pr/0FnFnt                                     \
526
 
  pr/0FnFt                                      \
527
 
  pr/0Fnt                                       \
528
 
  pr/0Ft                                        \
529
 
  pr/2-S_f-t_notab                              \
530
 
  pr/2-Sf-t_notab                               \
531
 
  pr/2f-t_notab                                 \
532
 
  pr/2s_f-t_notab                               \
533
 
  pr/2s_w60f-t_nota                             \
534
 
  pr/2sf-t_notab                                \
535
 
  pr/2sw60f-t_notab                             \
536
 
  pr/2w60f-t_notab                              \
537
 
  pr/3-0F                                       \
538
 
  pr/3-5l24f-t                                  \
539
 
  pr/3-FF                                       \
540
 
  pr/3a2l17-FF                                  \
541
 
  pr/3a3f-0F                                    \
542
 
  pr/3a3l15-t                                   \
543
 
  pr/3a3l15f-t                                  \
544
 
  pr/3b2l17-FF                                  \
545
 
  pr/3b3f-0F                                    \
546
 
  pr/3b3f-0FF                                   \
547
 
  pr/3b3f-FF                                    \
548
 
  pr/3b3l15-t                                   \
549
 
  pr/3b3l15f-t                                  \
550
 
  pr/3f-0F                                      \
551
 
  pr/3f-FF                                      \
552
 
  pr/3l24-t                                     \
553
 
  pr/3l24f-t                                    \
554
 
  pr/3ml24-FF                                   \
555
 
  pr/3ml24-t                                    \
556
 
  pr/3ml24-t-FF                                 \
557
 
  pr/3ml24f-t                                   \
558
 
  pr/4-7l24-FF                                  \
559
 
  pr/4l24-FF                                    \
560
 
  pr/FF                                         \
561
 
  pr/FFn                                        \
562
 
  pr/FFtn                                       \
563
 
  pr/FnFn                                       \
564
 
  pr/Ja3l24f-lm                                 \
565
 
  pr/Jb3l24f-lm                                 \
566
 
  pr/Jml24f-lm-lo                               \
567
 
  pr/W-72l24f-ll                                \
568
 
  pr/W20l24f-ll                                 \
569
 
  pr/W26l24f-ll                                 \
570
 
  pr/W27l24f-ll                                 \
571
 
  pr/W28l24f-ll                                 \
572
 
  pr/W35Ja3l24f-lm                              \
573
 
  pr/W35Jb3l24f-lm                              \
574
 
  pr/W35Jml24f-lmlo                             \
575
 
  pr/W35a3l24f-lm                               \
576
 
  pr/W35b3l24f-lm                               \
577
 
  pr/W35ml24f-lm-lo                             \
578
 
  pr/W72Jl24f-ll                                \
579
 
  pr/a2l15-FF                                   \
580
 
  pr/a2l17-FF                                   \
581
 
  pr/a3-0F                                      \
582
 
  pr/a3f-0F                                     \
583
 
  pr/a3f-0FF                                    \
584
 
  pr/a3f-FF                                     \
585
 
  pr/a3l15-t                                    \
586
 
  pr/a3l15f-t                                   \
587
 
  pr/a3l24f-lm                                  \
588
 
  pr/b2l15-FF                                   \
589
 
  pr/b2l17-FF                                   \
590
 
  pr/b3-0F                                      \
591
 
  pr/b3f-0F                                     \
592
 
  pr/b3f-0FF                                    \
593
 
  pr/b3f-FF                                     \
594
 
  pr/b3l15-t                                    \
595
 
  pr/b3l15f-t                                   \
596
 
  pr/b3l24f-lm                                  \
597
 
  pr/l24-FF                                     \
598
 
  pr/l24-t                                      \
599
 
  pr/l24f-t                                     \
600
 
  pr/loli                                       \
601
 
  pr/ml20-FF-t                                  \
602
 
  pr/ml24-FF                                    \
603
 
  pr/ml24-t                                     \
604
 
  pr/ml24-t-FF                                  \
605
 
  pr/ml24f-0F                                   \
606
 
  pr/ml24f-lm-lo                                \
607
 
  pr/ml24f-t                                    \
608
 
  pr/ml24f-t-0F                                 \
609
 
  pr/n+2-5l24f-0FF                              \
610
 
  pr/n+2l24f-0FF                                \
611
 
  pr/n+2l24f-bl                                 \
612
 
  pr/n+3-7l24-FF                                \
613
 
  pr/n+3l24f-0FF                                \
614
 
  pr/n+3l24f-bl                                 \
615
 
  pr/n+3ml20f-bl-FF                             \
616
 
  pr/n+3ml24f-bl-tn                             \
617
 
  pr/n+3ml24f-tn-bl                             \
618
 
  pr/n+4-8a2l17-FF                              \
619
 
  pr/n+4b2l17f-0FF                              \
620
 
  pr/n+5-8b3l17f-FF                             \
621
 
  pr/n+5a3l13f-0FF                              \
622
 
  pr/n+6a2l17-FF                                \
623
 
  pr/n+6b3l13f-FF                               \
624
 
  pr/n+7l24-FF                                  \
625
 
  pr/n+8l20-FF                                  \
626
 
  pr/nJml24f-lmlmlo                             \
627
 
  pr/nJml24f-lmlolm                             \
628
 
  pr/nN1+3l24f-bl                               \
629
 
  pr/nN15l24f-bl                                \
630
 
  pr/nSml20-bl-FF                               \
631
 
  pr/nSml20-t-t-FF                              \
632
 
  pr/nSml20-t-tFFFF                             \
633
 
  pr/nSml24-bl-FF                               \
634
 
  pr/nSml24-t-t-FF                              \
635
 
  pr/nSml24-t-tFFFF                             \
636
 
  pr/nl24f-bl                                   \
637
 
  pr/o3Jml24f-lm-lo                             \
638
 
  pr/o3a3Sl24f-tn                               \
639
 
  pr/o3a3Snl24f-tn                              \
640
 
  pr/o3a3l24f-tn                                \
641
 
  pr/o3b3Sl24f-tn                               \
642
 
  pr/o3b3Snl24f-tn                              \
643
 
  pr/o3b3l24f-tn                                \
644
 
  pr/o3mSl24f-bl-tn                             \
645
 
  pr/o3mSnl24fbltn                              \
646
 
  pr/o3ml24f-bl-tn                              \
647
 
  pr/t-0FF                                      \
648
 
  pr/t-FF                                       \
649
 
  pr/t-bl                                       \
650
 
  pr/t-t                                        \
651
 
  pr/tFFn                                       \
652
 
  pr/tFFt                                       \
653
 
  pr/tFFt-bl                                    \
654
 
  pr/tFFt-ll                                    \
655
 
  pr/tFFt-lm                                    \
656
 
  pr/tFnFt                                      \
657
 
  pr/t_notab                                    \
658
 
  pr/t_tab                                      \
659
 
  pr/t_tab_                                     \
660
 
  pr/ta3-0FF                                    \
661
 
  pr/ta3-FF                                     \
662
 
  pr/tb3-0FF                                    \
663
 
  pr/tb3-FF                                     \
664
 
  pr/tn                                         \
665
 
  pr/tn2e5o3-t_tab                              \
666
 
  pr/tn2e8-t_tab                                \
667
 
  pr/tn2e8o3-t_tab                              \
668
 
  pr/tn_2e8-t_tab                               \
669
 
  pr/tn_2e8S-t_tab                              \
670
 
  pr/tne8-t_tab                                 \
671
 
  pr/tne8o3-t_tab                               \
672
 
  pr/tt-0FF                                     \
673
 
  pr/tt-FF                                      \
674
 
  pr/tt-bl                                      \
675
 
  pr/tt-t                                       \
676
 
  pr/tta3-0FF                                   \
677
 
  pr/tta3-FF                                    \
678
 
  pr/ttb3-0FF                                   \
679
 
  pr/ttb3-FF                                    \
680
 
  pr/w72l24f-ll
681
 
 
682
 
include $(srcdir)/check.mk