changeset 767:8bc1fdc33e0b

fixed typos in bug_cgcs_353_*3.d and html_line_ending_dos
author thomask
date Mon, 05 Dec 2005 03:00:16 +0000
parents 3636e44bf753
children 9e6cba0a8cf4
files run/b/bug_cgcs_353_B3.d run/b/bug_cgcs_353_D3.d run/b/bug_cgcs_353_E3.d run/b/bug_cgcs_353_F3.d run/b/bug_cgcs_353_G3.d run/b/bug_cgcs_353_H3.d run/b/bug_cgcs_353_I3.d run/b/bug_cgcs_353_J3.d run/b/bug_cgcs_353_K3.d run/b/bug_cgcs_353_L3.d run/html_line_ending_dos.html
diffstat 11 files changed, 21 insertions(+), 21 deletions(-) [+]
line wrap: on
line diff
--- a/run/b/bug_cgcs_353_B3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_B3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -18,9 +18,9 @@
 
 	assert(foos.length==0);
 
-	foos[] = new Foo() ~ foos[];
+	foos = new Foo() ~ foos[];
 	
 	assert(foos.length==1);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/b/bug_cgcs_353_D3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_D3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -18,9 +18,9 @@
 
 	assert(foos.length==0);
 
-	foos[] = foos[] ~ new Foo();
+	foos = foos[] ~ new Foo();
 	
 	assert(foos.length==1);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/b/bug_cgcs_353_E3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_E3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -13,10 +13,10 @@
 
 	assert(foos.length==0);
 
-	foos[] = foos[] ~ 3;
+	foos = foos[] ~ 3;
 	
 	assert(foos.length==1);
 	assert(foos[0]==3);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/b/bug_cgcs_353_F3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_F3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -13,9 +13,9 @@
 
 	assert(foos.length==0);
 
-	foos[] = 3 ~ foos[];
+	foos = 3 ~ foos[];
 	
 	assert(foos.length==1);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/b/bug_cgcs_353_G3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_G3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -16,9 +16,9 @@
 
 	assert(foos.length==0);
 
-	foos[] = new Foo() ~ foos[];
+	foos = new Foo() ~ foos[];
 	
 	assert(foos.length==1);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/b/bug_cgcs_353_H3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_H3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -16,9 +16,9 @@
 
 	assert(foos.length==0);
 
-	foos[] = foos[] ~ new Foo();
+	foos = foos[] ~ new Foo();
 	
 	assert(foos.length==1);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/b/bug_cgcs_353_I3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_I3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -16,9 +16,9 @@
 
 	assert(foos.length==0);
 
-	foos[] = foos[] ~ new Foo();
+	foos = foos[] ~ new Foo();
 	
 	assert(foos.length==1);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/b/bug_cgcs_353_J3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_J3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -16,9 +16,9 @@
 
 	assert(foos.length==0);
 
-	foos[] = new Foo() ~ foos[];
+	foos = new Foo() ~ foos[];
 	
 	assert(foos.length==1);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/b/bug_cgcs_353_K3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_K3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -17,9 +17,9 @@
 
 	assert(foos.length==0);
 
-	foos[] = new Foo() ~ foos[];
+	foos = new Foo() ~ foos[];
 	
 	assert(foos.length==1);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/b/bug_cgcs_353_L3.d	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/b/bug_cgcs_353_L3.d	Mon Dec 05 03:00:16 2005 +0000
@@ -17,9 +17,9 @@
 
 	assert(foos.length==0);
 
-	foos[] = foos[] ~ new Foo();
+	foos = foos[] ~ new Foo();
 	
 	assert(foos.length==1);
 	
 	return 0;
-}
\ No newline at end of file
+}
--- a/run/html_line_ending_dos.html	Sun Dec 04 15:06:23 2005 +0000
+++ b/run/html_line_ending_dos.html	Mon Dec 05 03:00:16 2005 +0000
@@ -1,7 +1,7 @@
 <html>
 	<head><title>dstress: html_line_ending_dos</title></head>
 	<body><pre><CODE>
-// __DSTRESS_TORTURE_BLOCK -release
+// __DSTRESS_TORTURE_BLOCK__ -release
 
 int main(){
 	try{