Changeset: 1ab662d87504 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=1ab662d87504
Removed Files:
        monetdb5/tests/suite_06/Tests/test_00.mal
        monetdb5/tests/suite_06/Tests/test_00.modules
        monetdb5/tests/suite_06/Tests/test_00.stable.err
        monetdb5/tests/suite_06/Tests/test_00.stable.out
        monetdb5/tests/suite_06/Tests/test_02.mal
        monetdb5/tests/suite_06/Tests/test_02.stable.err
        monetdb5/tests/suite_06/Tests/test_02.stable.out
Modified Files:
        monetdb5/tests/suite_06/Tests/All
Branch: Oct2014
Log Message:

Clean out tests.


diffs (300 lines):

diff --git a/monetdb5/tests/suite_06/Tests/All 
b/monetdb5/tests/suite_06/Tests/All
--- a/monetdb5/tests/suite_06/Tests/All
+++ b/monetdb5/tests/suite_06/Tests/All
@@ -1,3 +1,1 @@
-#test_00 4.4 specific
 test_01
-#test_02 idem
diff --git a/monetdb5/tests/suite_06/Tests/test_00.mal 
b/monetdb5/tests/suite_06/Tests/test_00.mal
deleted file mode 100644
--- a/monetdb5/tests/suite_06/Tests/test_00.mal
+++ /dev/null
@@ -1,75 +0,0 @@
-# Monet Mil to Mal compiler
-# Copyright (c) 2001-2004, CWI. All rights reserved.
-
-#Predefined code segment
-#The compiler can not guarantee an accurate compilation,
-#because MIL unlike MAL is a dynamically typed language.
-#A few guidelines to maximize usefullness.
-#- make the type of variables explicit, in particular 'nil'
-#- upon advice of M2m to remap identifiers, change it in your program directly
-#include "mil_prelude";
-#      io.print("setoid(oid(20000000));");
-       aa_a := oid(20000000);
-       ba_a := setoid(aa_a);
-#      io.print("#create two tables and check out the alignment code\n");
-#      io.print("");
-#      io.print("var t:= new(int, int);");
-       t := new(nil:int,nil:int);
-#      io.print("t.insert(1,2);");
-       ca_a := insert(t,1,2);
-#      io.print("t.insert(3,6);");
-       da_a := insert(t,3,6);
-#      io.print("t.insert(13,14);");
-       ea_a := insert(t,13,14);
-#      io.print("t.insert(17,16);");
-       fa_a := insert(t,17,16);
-#      io.print("t.insert(19,18);");
-       ga_a := insert(t,19,18);
-#      io.print("t.insert(5,8);");
-       ha_a := insert(t,5,8);
-#      io.print("t.insert(7,10);");
-       ia_a := insert(t,7,10);
-#      io.print("t.insert(2,4);");
-       ja_a := insert(t,2,4);
-#      io.print("t.insert(11,12);");
-       ka_a := insert(t,11,12);
-#      io.print("print(t.ordered());");
-       la_a := bat.isSorted(t);
-       ma_a := print(la_a);
-#      io.print("print(t.reverse().ordered());");
-       na_a := reverse(t);
-       oa_a := bat.isSorted(na_a);
-       pa_a := print(oa_a);
-#      io.print("var t2:= t.copy();");
-       t2 := copy(t);
-#      io.print("t2.access(BAT_WRITE);");
-       BAT_WRITE:= mil.take("BAT_WRITE");
-       qa_a := access(t2,BAT_WRITE);
-#      io.print("#t2.order;\n");
-#      io.print("module(\"cluster\");");
-#      io.print("t2.order();");
-       ra_a := order(t2);
-#      io.print("print(t2.ordered());");
-       sa_a := bat.isSorted(t2);
-       ta_a := print(sa_a);
-#      io.print("t2.print();");
-       ua_a := print(t2);
-#      io.print("print(t2.aligned(t));");
-       va_a := aligned(t2,t);
-       wa_a := print(va_a);
-#      io.print("print(t2.synced(t));");
-       xa_a := isSynced(t2,t);
-       ya_a := print(xa_a);
-#      io.print("#t.sync(t2);\n");
-#      io.print("t.print();");
-       ab_a := print(t);
-#      io.print("print(t2.aligned(t));");
-       bb_a := aligned(t2,t);
-       cb_a := print(bb_a);
-#      io.print("print(t2.synced(t));");
-       db_a := isSynced(t2,t);
-       eb_a := print(db_a);
-#      io.print("quit();");
-       fb_a := quit();
-#Identifer 'synced' mapped to 'isSynced'
-#Identifer 'ordered' mapped to 'bat.isSorted'
diff --git a/monetdb5/tests/suite_06/Tests/test_00.modules 
b/monetdb5/tests/suite_06/Tests/test_00.modules
deleted file mode 100644
--- a/monetdb5/tests/suite_06/Tests/test_00.modules
+++ /dev/null
@@ -1,1 +0,0 @@
-cluster
diff --git a/monetdb5/tests/suite_06/Tests/test_00.stable.err 
b/monetdb5/tests/suite_06/Tests/test_00.stable.err
deleted file mode 100644
--- a/monetdb5/tests/suite_06/Tests/test_00.stable.err
+++ /dev/null
@@ -1,4 +0,0 @@
-stderr of test 'test_00` in directory 'monetdb5/tests/suite_06` itself:
-
-#> Mtest:      milS test_00 milS
-#> Mtest:      Mserver -yaccsilent -d8 -home 
/ufs/manegold/Current/monet/IRIX6.3 -db tests_suite_06 -single test_00.milS
diff --git a/monetdb5/tests/suite_06/Tests/test_00.stable.out 
b/monetdb5/tests/suite_06/Tests/test_00.stable.out
deleted file mode 100644
--- a/monetdb5/tests/suite_06/Tests/test_00.stable.out
+++ /dev/null
@@ -1,85 +0,0 @@
-stdout of test 'test_00` in directory 'monetdb5/tests/suite_06` itself:
-
-#> Mtest:      milS test_00 milS
-#> Mtest:      Mtimeout -timeout 210 Mserver -modulesilent -yaccsilent -d8 -db 
tests_suite_06 -single test_00.milS
-# Monet Database Server V4.1
-# Copyright (c) 1993-1999, CWI & SION. All rights reserved.
-# compiled for IRIX646.5/32bit on Fri Jan 14 01:04:33 MET 2000.
-#script:test_00.milS
-
-
-# Monet Database Server V4.3.5
-# Copyright (c) 1993-2002, CWI. All rights reserved.
-# compiled for i686-pc-linux-gnu/32bit; dynamically linked.
-setoid(oid(20000000));
-#create two tables and check out the alignment code
-
-var t:= new(int, int);
-t.insert(1,2);
-t.insert(3,6);
-t.insert(13,14);
-t.insert(17,16);
-t.insert(19,18);
-t.insert(5,8);
-t.insert(7,10);
-t.insert(2,4);
-t.insert(11,12);
-
-print(t.ordered());
-[ false ]
-print(t.reverse().ordered());
-[ false ]
-
-var t2:= t.copy();
-t2.access(BAT_WRITE);
-#t2.order;
-module("cluster");
-t2.order();
-print(t2.ordered());
-[ true ]
-
-t2.print();
-#-----------------#
-# BAT:   tmp_26  #
-# (int)          (int)   #
-#-----------------#
-[ 1,     2       ]
-[ 2,     4       ]
-[ 3,     6       ]
-[ 5,     8       ]
-[ 7,     10      ]
-[ 11,    12      ]
-[ 13,    14      ]
-[ 17,    16      ]
-[ 19,    18      ]
-print(t2.aligned(t));
-!ERROR: interpret: no matching MIL operator to 'aligned(BAT[int,int], 
BAT[int,int])'.
-!ERROR: interpret_params: print(param 1): evaluation error.
-print(t2.synced(t));
-[ false ]
-#t.sync(t2);
-t.print();
-#-----------------#
-# BAT:   tmp_25  #
-# (int)          (int)   #
-#-----------------#
-[ 1,     2       ]
-[ 3,     6       ]
-[ 13,    14      ]
-[ 17,    16      ]
-[ 19,    18      ]
-[ 5,     8       ]
-[ 7,     10      ]
-[ 2,     4       ]
-[ 11,    12      ]
-print(t2.aligned(t));
-!ERROR: interpret: no matching MIL operator to 'aligned(BAT[int,int], 
BAT[int,int])'.
-!ERROR: interpret_params: print(param 1): evaluation error.
-print(t2.synced(t));
-[ false ]
-
-
-# 17:09:12 >  
-# 17:09:12 >  Done.
-# 17:09:12 >  
-
diff --git a/monetdb5/tests/suite_06/Tests/test_02.mal 
b/monetdb5/tests/suite_06/Tests/test_02.mal
deleted file mode 100644
--- a/monetdb5/tests/suite_06/Tests/test_02.mal
+++ /dev/null
@@ -1,44 +0,0 @@
-# Monet Mil to Mal compiler
-# Copyright (c) 2001-2004, CWI. All rights reserved.
-
-#Predefined code segment
-#The compiler can not guarantee an accurate compilation,
-#because MIL unlike MAL is a dynamically typed language.
-#A few guidelines to maximize usefullness.
-#- make the type of variables explicit, in particular 'nil'
-#- upon advice of M2m to remap identifiers, change it in your program directly
-#include "mil_prelude";
-#      io.print("setoid(oid(20000000));");
-       aa_a := oid(20000000);
-       ba_a := setoid(aa_a);
-#      io.print("#check out arithmatic against using Multi-cast operator\n");
-#      io.print("");
-#      io.print("var t:= new(int, int);");
-       t := new(nil:int,nil:int);
-#      io.print("t.insert(1,2);");
-       ca_a := insert(t,1,2);
-#      io.print("t.insert(3,6);");
-       da_a := insert(t,3,6);
-#      io.print("t.insert(13,14);");
-       ea_a := insert(t,13,14);
-#      io.print("t.insert(17,16);");
-       fa_a := insert(t,17,16);
-#      io.print("t.insert(19,18);");
-       ga_a := insert(t,19,18);
-#      io.print("t.insert(5,8);");
-       ha_a := insert(t,5,8);
-#      io.print("t.insert(7,10);");
-       ia_a := insert(t,7,10);
-#      io.print("t.insert(2,4);");
-       ja_a := insert(t,2,4);
-#      io.print("t.insert(11,12);");
-       ka_a := insert(t,11,12);
-#      io.print("#A quick mechanism to create an initialized BAT\n");
-#      io.print("var z:= new(int,str);");
-       z := new(nil:int,nil:str);
-#      io.print("z.[insert](t,\"hello\");");
-       la_a := multiplex.tactics("insert",z,t,"hello");
-#      io.print("z.print();");
-       ma_a := print(z);
-#      io.print("quit();");
-       na_a := quit();
diff --git a/monetdb5/tests/suite_06/Tests/test_02.stable.err 
b/monetdb5/tests/suite_06/Tests/test_02.stable.err
deleted file mode 100644
--- a/monetdb5/tests/suite_06/Tests/test_02.stable.err
+++ /dev/null
@@ -1,4 +0,0 @@
-stderr of test 'test_02` in directory 'monetdb5/tests/suite_06` itself:
-
-#> Mtest:      milS test_02 milS
-#> Mtest:      Mserver -yaccsilent -d8 -home 
/ufs/manegold/Current/monet/IRIX6.3 -db tests_suite_06 -single test_02.milS
diff --git a/monetdb5/tests/suite_06/Tests/test_02.stable.out 
b/monetdb5/tests/suite_06/Tests/test_02.stable.out
deleted file mode 100644
--- a/monetdb5/tests/suite_06/Tests/test_02.stable.out
+++ /dev/null
@@ -1,45 +0,0 @@
-stdout of test 'test_02` in directory 'monetdb5/tests/suite_06` itself:
-
-#> Mtest:      milS test_02 milS
-#> Mtest:      Mtimeout -timeout 210 Mserver -modulesilent -yaccsilent -d8 -db 
tests_suite_06 -single test_02.milS
-# Monet Database Server V4.1
-# Copyright (c) 1993-1999, CWI & SION. All rights reserved.
-# compiled for IRIX646.5/32bit on Fri Jan 14 19:36:03 MET 2000.
-#script:test_02.milS
-
-
-# Monet Database Server V4.3.5
-# Copyright (c) 1993-2002, CWI. All rights reserved.
-# compiled for i686-pc-linux-gnu/32bit; dynamically linked.
-setoid(oid(20000000));
-#check out arithmatic against using Multi-cast operator
-
-var t:= new(int, int);
-t.insert(1,2);
-t.insert(3,6);
-t.insert(13,14);
-t.insert(17,16);
-t.insert(19,18);
-t.insert(5,8);
-t.insert(7,10);
-t.insert(2,4);
-t.insert(11,12);
-
-#A quick mechanism to create an initialized BAT
-var z:= new(int,str);
-z.[insert](t,"hello");
-!ERROR: interpret: no matching MIL operator to '[insert](BAT[int,str], 
BAT[int,int], str)'.
-!MAYBE YOU MEAN:
-!      insert(BAT[any::1,any::2], BAT[any::1,any::2]) : BAT[any::1,any::2]
-!      insert(BAT[any::1,any::2], any::1, any::2) : BAT[any::1,any::2]
-z.print();
-#-----------------#
-# BAT:   tmp_26  #
-# (int)          (str)   #
-#-----------------#
-
-
-# 17:09:14 >  
-# 17:09:14 >  Done.
-# 17:09:14 >  
-
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to