diff -r e3d532dd8b5d -r 986e1c75432a contrib/gcc-test-suite/README --- a/contrib/gcc-test-suite/README Wed May 19 17:53:04 2010 +0200 +++ b/contrib/gcc-test-suite/README Fri Nov 18 15:29:18 2011 +0800 @@ -7,7 +7,6 @@ * DejaGnu 'runtest' v1.4.4+ * Make v3.81+ -* wget Configuration @@ -19,16 +18,23 @@ Available config variables: -DG_GCC_VERSION -DG_GCC_URL DG_TOOLNAME -DG_TARGET + The name of the tool you want to test. + Currently supported: gcc or g++ + Default: gcc + DG_TARGET_HOSTNAME + The hostname or IP of the machine to execute run-tests + Default: 127.0.0.1 + DG_TARGET_USERNAME + Execute the run-test as this user on DG_TARGET_HOSTNAME + Default: root + DG_C_TESTS DG_CPP_TESTS -DG_TOOLCHAIN_DIR -DG_SRC_DIR + The C/C++ tests you want to check + Default: (empty, means all tests) Run examples @@ -53,19 +59,25 @@ On host do: ssh-keygen -t rsa (then simply press enter thru all steps) -scp ~/.ssh/id_rsa.pub @:~/ - -On target do: -cd ~ -mkdir .ssh -cat id_rsa.pub >> .ssh/authorized_keys -rm id_rsa.pub +ssh-copy-id -i ~/.ssh/id_rsa.pub @ Now automatic ssh login should work - test by doing a simple ssh session to target. Note: The procedure might be slightly different for your particular target. +Getting rid of the test-suite +----------------------------- + +If you no longer have a need for the test-suite, then you can remove it altogether +from your toolchain. Just delete the test-suite/ dub-dir. + + Author ------ Martin Lund + Initial content + +"Yann E. MORIN" + Getting rid of the test-suite + Minor fixes