From: <cap...@us...> - 2007-04-13 17:04:28
|
Revision: 42 http://svn.sourceforge.net/pearcolator/?rev=42&view=rev Author: captain5050 Date: 2007-04-13 10:04:24 -0700 (Fri, 13 Apr 2007) Log Message: ----------- Simple ppc exit test Added Paths: ----------- tests/simple/ppc/ tests/simple/ppc/ppc_exit tests/simple/ppc/ppc_exit.s Added: tests/simple/ppc/ppc_exit =================================================================== (Binary files differ) Property changes on: tests/simple/ppc/ppc_exit ___________________________________________________________________ Name: svn:executable + * Name: svn:mime-type + application/octet-stream Added: tests/simple/ppc/ppc_exit.s =================================================================== --- tests/simple/ppc/ppc_exit.s (rev 0) +++ tests/simple/ppc/ppc_exit.s 2007-04-13 17:04:24 UTC (rev 42) @@ -0,0 +1,5 @@ +.text +.global _start +_start: + li 0,1 + sc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cap...@us...> - 2007-04-13 17:53:25
|
Revision: 45 http://svn.sourceforge.net/pearcolator/?rev=45&view=rev Author: captain5050 Date: 2007-04-13 10:53:27 -0700 (Fri, 13 Apr 2007) Log Message: ----------- Organize naming a little better Added Paths: ----------- tests/simple/ppc/syscall_exit tests/simple/ppc/syscall_exit.s tests/simple/x86/syscall_exit tests/simple/x86/syscall_exit.s Removed Paths: ------------- tests/simple/ppc/ppc_exit tests/simple/ppc/ppc_exit.s tests/simple/x86/x86_exit tests/simple/x86/x86_exit.s Deleted: tests/simple/ppc/ppc_exit =================================================================== (Binary files differ) Deleted: tests/simple/ppc/ppc_exit.s =================================================================== --- tests/simple/ppc/ppc_exit.s 2007-04-13 17:50:21 UTC (rev 44) +++ tests/simple/ppc/ppc_exit.s 2007-04-13 17:53:27 UTC (rev 45) @@ -1,5 +0,0 @@ -.text -.global _start -_start: - li 0,1 - sc Copied: tests/simple/ppc/syscall_exit (from rev 42, tests/simple/ppc/ppc_exit) =================================================================== (Binary files differ) Copied: tests/simple/ppc/syscall_exit.s (from rev 42, tests/simple/ppc/ppc_exit.s) =================================================================== --- tests/simple/ppc/syscall_exit.s (rev 0) +++ tests/simple/ppc/syscall_exit.s 2007-04-13 17:53:27 UTC (rev 45) @@ -0,0 +1,5 @@ +.text +.global _start +_start: + li 0,1 + sc Copied: tests/simple/x86/syscall_exit (from rev 41, tests/simple/x86/x86_exit) =================================================================== (Binary files differ) Copied: tests/simple/x86/syscall_exit.s (from rev 41, tests/simple/x86/x86_exit.s) =================================================================== --- tests/simple/x86/syscall_exit.s (rev 0) +++ tests/simple/x86/syscall_exit.s 2007-04-13 17:53:27 UTC (rev 45) @@ -0,0 +1,5 @@ +.text +.global _start +_start: + mov $1, %eax + int $0x80 Deleted: tests/simple/x86/x86_exit =================================================================== (Binary files differ) Deleted: tests/simple/x86/x86_exit.s =================================================================== --- tests/simple/x86/x86_exit.s 2007-04-13 17:50:21 UTC (rev 44) +++ tests/simple/x86/x86_exit.s 2007-04-13 17:53:27 UTC (rev 45) @@ -1,5 +0,0 @@ -.text -.global _start -_start: - mov $1, %eax - int $0x80 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cap...@us...> - 2007-04-13 18:40:21
|
Revision: 48 http://svn.sourceforge.net/pearcolator/?rev=48&view=rev Author: captain5050 Date: 2007-04-13 11:40:22 -0700 (Fri, 13 Apr 2007) Log Message: ----------- Bad instruction tests Added Paths: ----------- tests/simple/ppc/bad_instruction tests/simple/ppc/bad_instruction.s tests/simple/x86/bad_instruction tests/simple/x86/bad_instruction.s Added: tests/simple/ppc/bad_instruction =================================================================== (Binary files differ) Property changes on: tests/simple/ppc/bad_instruction ___________________________________________________________________ Name: svn:executable + * Name: svn:mime-type + application/octet-stream Added: tests/simple/ppc/bad_instruction.s =================================================================== --- tests/simple/ppc/bad_instruction.s (rev 0) +++ tests/simple/ppc/bad_instruction.s 2007-04-13 18:40:22 UTC (rev 48) @@ -0,0 +1,4 @@ +.text +.global _start +_start: + .word 0 Added: tests/simple/x86/bad_instruction =================================================================== (Binary files differ) Property changes on: tests/simple/x86/bad_instruction ___________________________________________________________________ Name: svn:executable + * Name: svn:mime-type + application/octet-stream Added: tests/simple/x86/bad_instruction.s =================================================================== --- tests/simple/x86/bad_instruction.s (rev 0) +++ tests/simple/x86/bad_instruction.s 2007-04-13 18:40:22 UTC (rev 48) @@ -0,0 +1,4 @@ +.text +.global _start +_start: +.byte 0x0f, 0x0b This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |