Index: unk/softs/tests_cc_vcache/Makefile.inc
===================================================================
--- /trunk/softs/tests_cc_vcache/Makefile.inc	(revision 518)
+++ 	(revision )
@@ -1,27 +1,0 @@
-all: test.elf
-
-COMMON= ../common
-LDSCRIPT?= ../common/ldscript
-
-CC= mipsel-unknown-elf-gcc
-LD= mipsel-unknown-elf-ld
-DU= mipsel-unknown-elf-objdump
-
-CFLAGS= -mips32 -nostdinc -I. -I${COMMON} -mno-abicalls
-### LDFLAGS=-mips32 -nostdlib -Wl,-T${LDSCRIPT} -Ttext=0xbfc00000
-
-#### object files generation
-test.o: test.S 
-	${CC} ${CFLAGS} -c -o $@ $<
-	${DU} -D $@ > $@.txt
-
-subr.o: ${COMMON}/subr.S
-	${CC} ${CFLAGS} -c -o $@ $<
-	${DU} -D $@ > $@.txt
-
-### linking : test.o has to be the first object 
-test.elf: test.o subr.o ${EXTRA_OBJ}
-	${LD} -o $@ -T ${LDSCRIPT} -Ttext 0xbfc00000 $^
-	${DU} -D $@ > $@.txt
-clean:
-	rm -f *.o test.elf *.txt run.out temp
Index: unk/softs/tests_cc_vcache/README
===================================================================
--- /trunk/softs/tests_cc_vcache/README	(revision 518)
+++ 	(revision )
@@ -1,46 +1,0 @@
-This is a very basic framework for running regression tests against
-a mips32+ccvcache TSAR platform. Here's the layout of this directory:
-
-../../../platforms/tsarv4_mono_mmu
-	contains the soclib platform description and simulation executable.
-	It should be compiled before starting tests.
-	it uses the vci_simhelper component, used to stop the simulation
-	with an exit value.  The framework uses this exit status
-	(with other things, see below) to determine if a test
-	is successfull. The simulator will exit with a non-0 exit status
-	after 100000 cycles (and a message to stderr), so the tests are
-	expected to be simple.
-	The platform has a tty, which is redirected to a file along with
-	the simlulator's output. The test framework may search for specific
-	strings in this file to determine if a test was successfull.
-common/
-	Some common functions, ldscripts, etc ... used by the tests.
-	It has a subr.S which holds usefull subroutines, such as
-	print() and printx().
-Makefile.inc
-	included from the test's Makefiles. Basic stuff to compile a
-	mips32 ELF executable for a test. It expects a test.S,
-	add the subr.S from common and eventually additionnal object
-	files.
-test_*/
-	these directories holds the test themselves. They have a run
-	script which does what is needed to compile and run a test,
-	print "test failed" or "test passed" on stdout, and clean the
-	directory if it's successfull. A sample script will call
-	make, then run the simulator with srdout/stderr redirected
-	to a file. If the simulator exists with a 0 status, this
-	script search for some strings in the output (that the
-	test program would have printed). This is an additionnal way
-	to check that all worked properly.
-	Tests are written in assembly; as we're testing for very specific
-	conditions (such as an instruction in a branch's delay slot on
-	a page boundary), we don't want the compiler to optimise things
-	or otherwise reorder instructions.
-	If the test was successfull, the 'run' script cleanups the
-	directory. Otherwise the 'run.out' file is available to
-	start looking at what's wrong.
-run_tests
-	runs all the test_*/run scripts - the goal being that
-	all of them print "test passsed" :). Directories are explicitely
-	listed in the run_tests script (order does matter to have a readable
-	output)
Index: unk/softs/tests_cc_vcache/run_tests
===================================================================
--- /trunk/softs/tests_cc_vcache/run_tests	(revision 518)
+++ 	(revision )
@@ -1,36 +1,0 @@
-#!/bin/sh
-
-PATH=${PATH}:/dsk/l1/misc/bouyer/tmp/tsarmips/obj/netbsd-5/tooldir/bin
-export PATH
-SOCLIB_TTY=TERM
-export SOCLIB_TTY
-
-for dir in test_sanity test_exceptions test_mmu_basic \
-   test_excep_ls test_excep_ls_delayslot test_excep_ls_llsc \
-   test_excep_if test_excep_if_delayslot test_excep_if_llsc \
-   test_exception_epc_modify	\
-   test_dtlb_inval test_dtlb_inval2 test_dtlb_inval3 \
-   test_itlb_inval test_itlb_inval2 \
-   test_idtlb_inval test_idtlb_inval2 test_idtlb_inval3 test_idtlb_inval4 \
-   test_dtlb_ptprinval test_itlb_ptprinval test_idtlb_ptprinval \
-   test_sync \
-   test_llsc test_sc_no_ll test_sc_update_cache test_pte_llsc \
-   test_interrupt \
-   test_interrupt_epc_modify \
-   test_xicu_timer \
-   test_interrupt_delayslot \
-   test_interrupt_mask \
-   test_interrupt_external_mask \
-   test_excep_cop test_excep_cop_delayslot test_excep_cop1 \
-   test_syscall test_syscall_delayslot \
-   test_breakpoint test_breakpoint_delayslot \
-   test_ri test_ri_delayslot \
-   test_ao test_ao_delayslot \
-   test_trap test_trap_delayslot \
-   test_dcache_inval_pa test_icache_inval_pa \
-   test_pte2i_ref test_pte2lw_ref test_pte2ll_ref test_pte2sw_dirty test_pte2sc_dirty \
-   test_dma_basic test_dma_unaligned \
-   ; do
-	echo -n ${dir}": "
-	(cd $dir && ./run)
-done
