Changeset: e774e68b7af2 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=e774e68b7af2
Modified Files:
        monetdb5/mal/Tests/performanceTests/tst903c.mil
        
monetdb5/tests/BugDay_2005-10-06_4.8/Tests/erroneous_multiplex.SF-899586.milS
        monetdb5/tests/BugDay_2005-10-06_4.8/Tests/kill_0.SF-1314982.milS
        
monetdb5/tests/BugDay_2005-10-06_4.8/Tests/return_in_while.SF-905116.milS
        monetdb5/tests/BugDay_2005-10-06_4.8/Tests/table_type.SF-916648.milS
        
monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Confusing_error.SF-852659.milC
        
monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s00.milC
        
monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s01.milC.src
        
monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s02.milC.src
        
monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s00.milC
        
monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s01.milC
        
monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s02.milC.src
        monetdb5/tests/BugReports/Tests/no.106.prelude.mil
        monetdb5/tests/BugReports/Tests/no.107.prelude.mil
        monetdb5/tests/BugReports/Tests/no.145.prelude.mil
        monetdb5/tests/BugReports/Tests/no.158.prelude.mil
        monetdb5/tests/BugReports/Tests/no.158.source.mil
        monetdb5/tests/BugsViaSourgeforce/Tests/ID.853867.mil
        monetdb5/tests/BugsViaSourgeforce/Tests/ID.866700.milC
        monetdb5/tests/BugsViaSourgeforce/Tests/ID.905495c.mil
        monetdb5/tests/BugsViaSourgeforce/Tests/ID.905495s.mil
        monetdb5/tests/BugsViaSourgeforce/Tests/ID.994842.milC
        sql/benchmarks/alex/load.mil
        sql/benchmarks/arno/Tests/load.milC
        sql/benchmarks/as3ap/as3ap-queries.mil
        sql/benchmarks/as3ap/as3ap-schema.mil
Branch: Aug2011
Log Message:

Removed legacy MIL scripts.


diffs (truncated from 1401 to 300 lines):

diff --git a/monetdb5/mal/Tests/performanceTests/tst903c.mil 
b/monetdb5/mal/Tests/performanceTests/tst903c.mil
deleted file mode 100644
--- a/monetdb5/mal/Tests/performanceTests/tst903c.mil
+++ /dev/null
@@ -1,34 +0,0 @@
-# cost of a range split
-module(alarm);
-
-s2:= new(lng,lng);
-i:= 0;
-while(i<1000000){
-       k:= rand();
-       insert(s2,lng(k),lng(k));
-       i:=i+1;
-}
-t0:= usec();
-z:= rangesplit(s2,10);
-t1:= usec();
-print(z);
-t3:=t1-t0;
-printf("rangesplit %d\n",t3);
-t0:= usec();
-z:= hashsplit(s2,10);
-t1:= usec();
-print(z);
-t3:=t1-t0;
-printf("hashsplit %d\n",t3);
-t0:= usec();
-z:= urangesplit(s2,10);
-t1:= usec();
-print(z);
-t3:=t1-t0;
-printf("urangesplit %d\n",t3);
-t0:= usec();
-z:= uhashsplit(s2,10);
-t1:= usec();
-print(z);
-t3:=t1-t0;
-printf("uhashsplit %d\n",t3);
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/erroneous_multiplex.SF-899586.milS 
b/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/erroneous_multiplex.SF-899586.milS
deleted file mode 100644
--- 
a/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/erroneous_multiplex.SF-899586.milS
+++ /dev/null
@@ -1,17 +0,0 @@
-var b := new(int, int);
-b.insert(1, 1);
-b.insert(2, 2);
-
-PROC multi1(int i) : int {
-  [multi2](b);
-  return(i);
-}
-
-# erronous procedure
-PROC multi2(int i) : int {
-  b.find(10);
-  return(i);
-}
-
-print([multi2](b));
-print([multi1](b));
diff --git a/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/kill_0.SF-1314982.milS 
b/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/kill_0.SF-1314982.milS
deleted file mode 100644
--- a/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/kill_0.SF-1314982.milS
+++ /dev/null
@@ -1,1 +0,0 @@
-kill(0);
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/return_in_while.SF-905116.milS 
b/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/return_in_while.SF-905116.milS
deleted file mode 100644
--- a/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/return_in_while.SF-905116.milS
+++ /dev/null
@@ -1,9 +0,0 @@
-proc test() : void {
-  while (true) {
-    print("good");
-    return;
-  }
-  print("bad");
-}
-
-test();
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/table_type.SF-916648.milS 
b/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/table_type.SF-916648.milS
deleted file mode 100644
--- a/monetdb5/tests/BugDay_2005-10-06_4.8/Tests/table_type.SF-916648.milS
+++ /dev/null
@@ -1,2 +0,0 @@
-print(bat(void,int).seqbase(0@0).insert(nil,1));
-table(bat(void,int).seqbase(0@0).insert(nil,1));
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Confusing_error.SF-852659.milC 
b/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Confusing_error.SF-852659.milC
deleted file mode 100644
--- 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Confusing_error.SF-852659.milC
+++ /dev/null
@@ -1,1 +0,0 @@
-new(int, int).1234567890;
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s00.milC
 
b/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s00.milC
deleted file mode 100644
--- 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s00.milC
+++ /dev/null
@@ -1,21 +0,0 @@
-module("color","array","mmath");
-{ 
-       var width := 40;
-       var height := 30;
-       var x_axis := grid(height,width,1,0);
-       var y_axis := grid(1,height,width,0);
-       var r := [abs]([int]([*]([sin]([/]([dbl](x_axis),dbl 
(width)/(2.0LL*M_PI))),255.0LL))); 
-       var g := 
[abs]([int]([*]([sin]([/]([dbl](y_axis),dbl(height)/(2.0LL*M_PI))),255.0LL)));
-       var b := [abs]([int]([*]([sin]([/]([dbl]([+] 
(x_axis,y_axis)),dbl(width+height)/(2.0LL*M_PI))),255.0LL)));
-       var  values  := [rgb](r,g,b); 
-
-# Note this should  be 'table', not 'print', but at present monet doesnt 
-# produce column  types in the table output, hence we revert back to the 
-# plain print    funciton.     
-
-       print(x_axis,y_axis,values);
-}
-drop("color");
-drop("array");
-drop("mmath");
-
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s01.milC.src
 
b/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s01.milC.src
deleted file mode 100644
--- 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s01.milC.src
+++ /dev/null
@@ -1,1 +0,0 @@
-$RELSRCDIR/Recursive_module_load.SF-853867_s00.milC
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s02.milC.src
 
b/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s02.milC.src
deleted file mode 100644
--- 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/Recursive_module_load.SF-853867_s02.milC.src
+++ /dev/null
@@ -1,1 +0,0 @@
-$RELSRCDIR/Recursive_module_load.SF-853867_s00.milC
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s00.milC
 
b/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s00.milC
deleted file mode 100644
--- 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s00.milC
+++ /dev/null
@@ -1,5 +0,0 @@
-var b:=bat(void,int);
-b.insert(0@0,1);
-b.rename("xyz");
-b.persists(true);
-commit();
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s01.milC
 
b/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s01.milC
deleted file mode 100644
--- 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s01.milC
+++ /dev/null
@@ -1,14 +0,0 @@
-proc int2lng(str intbat, str lngbat) : void
-{
-       printf("Destroying %s\n", lngbat);
-       destroy(lngbat);
-       commit();
-       printf("Converting int %s to lng %s\n", intbat, lngbat);
-       var i := bat(intbat);
-       var l:=[lng](i);
-       l.rename(lngbat);
-       l.persists(true);
-       commit();
-}
-
-int2lng("xyz", "xyz_lng");
diff --git 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s02.milC.src
 
b/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s02.milC.src
deleted file mode 100644
--- 
a/monetdb5/tests/BugDay_2005-10-06_4.9.3/Tests/crash_destroy_commit.SF-1154552_s02.milC.src
+++ /dev/null
@@ -1,1 +0,0 @@
-$RELSRCDIR/crash_destroy_commit.SF-1154552_s01.milC
diff --git a/monetdb5/tests/BugReports/Tests/no.106.prelude.mil 
b/monetdb5/tests/BugReports/Tests/no.106.prelude.mil
deleted file mode 100644
--- a/monetdb5/tests/BugReports/Tests/no.106.prelude.mil
+++ /dev/null
@@ -1,73 +0,0 @@
-# >Number:         106
-include "mil_algebra_procs";
-include "mil_insert";
-include "mil_system_procs";
-# >Category:       MIL
-# >Synopsis:       voids still cause problems
-# >Confidential:   no
-# >Severity:       serious
-# >Priority:       medium
-# >Responsible:    boncz
-# >State:          open
-# >Class:          sw-bug
-# >Submitter-Id:   unknown
-# >Arrival-Date:   Wed Jan  7 14:12:53 1998
-# >Originator:     arjen
-# >Organization:
-# Other
-# >Release:        971007
-# >Environment:
-# Solaris 2.5.1
-# >Description:
-# The following hangs the system:
-# 
-# Arjen@cinema% Mclient
-# # start session on arjen:50082
-# > # w.bat is een text dump formaat ( oid, str ),
-# > # bevattende docid, term
-# > w := new( oid, str );
-# > w.import( "w.bat" );
-# > w.print;
-# #---------------------------------#
-# # oid   | tmp_27                  #
-# #---------------------------------#
-# [ 0@0,    "test"                  ]
-# [ 0@0,    "this"                  ]
-# [ 0@0,    "database"              ]
-# [ 0@0,    "this"                  ]
-# [ 0@0,    "and"                   ]
-# [ 0@0,    "test"                  ]
-# [ 0@0,    "its"                   ]
-# [ 0@0,    "export"                ]
-# [ 0@0,    "functionality"         ]
-# [ 1@0,    "test"                  ]
-# [ 1@0,    "it"                    ]
-# [ 1@0,    "thoroughly"            ]
-# [ 2@0,    "test"                  ]
-# [ 2@0,    "this"                  ]
-# [ 2@0,    "database"              ]
-# > #split w in twee tabellen
-# > docid := new( void, oid );
-# > tid := new( void, str );
-# > docid := [w~].reverse;
-# > tid := [~w];
-# > docid.seqbase( 1000@0 );
-# > tid.seqbase( 1000@0 );
-# > CTgroup( docid, tid ).print;
-# 
-# BTW, adding copy does not help, only if instead of := I use a
-# docid.insert( [w~].reverse ), then I get what I expect to get.
-# 
-# Arjen
-
-setoid(oid(10000000));
-module("unix","ascii_io");
-#
-# Text retrieval testjes
-#
-
-# w.bat is een text dump formaat ( oid, str ),
-# bevattende docid, term
-var w := new( oid, str );
-w.import( sprintf("%s/no.106.w.bat",getenv("TSTTRGDIR")) );
-w.print();
diff --git a/monetdb5/tests/BugReports/Tests/no.107.prelude.mil 
b/monetdb5/tests/BugReports/Tests/no.107.prelude.mil
deleted file mode 100644
--- a/monetdb5/tests/BugReports/Tests/no.107.prelude.mil
+++ /dev/null
@@ -1,90 +0,0 @@
-include "mil_algebra_procs";
-include "mil_insert";
-include "mil_system_procs";
-# >Number:         107
-# >Category:       MIL
-# >Synopsis:       related? bug with voids
-# >Confidential:   no
-# >Severity:       serious
-# >Priority:       medium
-# >Responsible:    boncz
-# >State:          open
-# >Class:          sw-bug
-# >Submitter-Id:   unknown
-# >Arrival-Date:   Wed Jan  7 15:49:59 1998
-# >Originator:     arjen
-# >Organization:
-# Other
-# >Release:        971007
-# >Environment:
-# Solaris 2.5.1
-# >Description:
-# Okay, maybe this helps in determining the problem with voids as
-# reported earlier today: (other option is below)
-# 
-# #
-# # Text retrieval testjes
-# #
-# 
-# # w.bat is een text dump formaat ( oid, str ),
-# # bevattende docid, term
-# w := new( oid, str );
-# w.import( "w.bat" );
-# w.print();
-# 
-# # [t_i, n_i]
-# w.histogram.print;
-# 
-# #split w in twee tabellen
-# docid := new( void, oid );
-# tid := new( void, str );
-# docid.insert( [w~].reverse );
-# tid.insert( [~w] );
-# 
-# docid.seqbase( 1000@0 );
-# tid.seqbase( 1000@0 );
-# print( docid, tid );
-# 
-# module( "xtables" );
-# CTgroup( docid, tid ).print;
-# 
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to