mirror of
https://git.proxmox.com/git/proxmox-spamassassin
synced 2025-08-05 18:09:46 +00:00
15 lines
304 B
Perl
Executable File
15 lines
304 B
Perl
Executable File
#!/usr/bin/perl -T
|
|
|
|
use lib '.'; use lib 't';
|
|
use SATest; sa_t_init("zz_cleanup");
|
|
use Test::More tests => 1;
|
|
|
|
use File::Path;
|
|
|
|
# jm: off! we want to keep the logs around in case something failed,
|
|
# so we can see what it was. esp. important in case of intermittent
|
|
# failures.
|
|
# rmtree ("log");
|
|
|
|
ok (1);
|