From 4ac453011fb3ee241c6f3023f79c942d99f72eb5 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Wed, 15 Feb 2017 09:58:44 +0100 Subject: Remove tests involving Cminor concrete syntax. Update Changelog Follow-up to [29653ba] --- test/cminor/mainintegr.c | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 test/cminor/mainintegr.c (limited to 'test/cminor/mainintegr.c') diff --git a/test/cminor/mainintegr.c b/test/cminor/mainintegr.c deleted file mode 100644 index 5f5bdfe0..00000000 --- a/test/cminor/mainintegr.c +++ /dev/null @@ -1,13 +0,0 @@ -#include -#include - -extern double test(int); - -int main(int argc, char ** argv) -{ - int n; double r; - if (argc >= 2) n = atoi(argv[1]); else n = 10000; - r = test(n); - printf("integr(square, 0.0, 1.0, %d) = %g\n", n, r); - return 0; -} -- cgit