summaryrefslogtreecommitdiff
path: root/lib/sbin/checkout.pl
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-08 18:05:51 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-08 18:05:51 +0000
commitf26257f47e76a9002ec51fc0d15475f9a91a67f8 (patch)
tree6a92cad6821ee9ae7d94e6bf6d9879759c332a3d /lib/sbin/checkout.pl
parent6c845b6bf4b913542e888aaacd6933610a21fd30 (diff)
Added Benchmark (ADM) as an application
git-svn-id: http://svn.cactuscode.org/flesh/trunk@887 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/checkout.pl')
-rw-r--r--lib/sbin/checkout.pl20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/sbin/checkout.pl b/lib/sbin/checkout.pl
index 7e3e809f..05e46319 100644
--- a/lib/sbin/checkout.pl
+++ b/lib/sbin/checkout.pl
@@ -203,6 +203,7 @@ sub get_applications
print "\nAvailable applications: \n";
print " [1] Example F90 wave equation evolver\n";
print " [2] Example F77 wave equation evolver\n";
+ print " [3] Benchmark (ADM)\n";
print "\n";
# Put number of applications here
@@ -280,6 +281,25 @@ sub get_applications
system("cvs -q checkout CactusPUGH/PUGH");
print("Completed checkout of application Wave F77\n");
}
+ elsif ($i == 3)
+ {
+ # Checkout ADM Benchmark
+ print("\n");
+ print("Checking out ADM\n");
+ system("cvs -q checkout CactusEinstein/ADM");
+ print("Checking out Einstein\n");
+ system("cvs -q checkout CactusEinstein/Einstein");
+ print("Checking out \n");
+ system("cvs -q checkout CactusBase/CartGrid3D");
+ print("Checking out IOUtil\n");
+ system("cvs -q checkout CactusBase/IOUtil");
+ print("Checking out IOASCII\n");
+ system("cvs -q checkout CactusPUGHIO/IOASCII");
+ print("Checking out PUGH\n");
+ system("cvs -q checkout CactusPUGH/PUGH");
+ print("Completed checkout of application Benchmark (ADM)\n");
+ }
+
}
}