Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.602
diff -u -r1.602 system.module
--- modules/system/system.module	7 May 2008 19:17:50 -0000	1.602
+++ modules/system/system.module	31 May 2008 00:50:38 -0000
@@ -377,6 +377,14 @@
     'page callback' => 'system_admin_menu_block_page',
     'access arguments' => array('access administration pages'),
   );
+  $items['admin/development'] = array(
+    'title' => 'Development',
+    'description' => 'Tools to help developers.',
+    'position' => 'right',
+    'weight' => -9,
+    'page callback' => 'system_admin_menu_block_page',
+    'access arguments' => array('access administration pages'),
+  );
   $items['admin/settings/admin'] = array(
     'title' => 'Administration theme',
     'description' => 'Settings for how your administrative pages should look.',
Index: modules/simpletest/simpletest.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/simpletest.module,v
retrieving revision 1.3
diff -u -r1.3 simpletest.module
--- modules/simpletest/simpletest.module	10 May 2008 07:46:22 -0000	1.3
+++ modules/simpletest/simpletest.module	31 May 2008 00:50:37 -0000
@@ -20,7 +20,7 @@
  * Implementation of hook_menu().
  */
 function simpletest_menu() {
-  $items['admin/build/testing'] = array(
+  $items['admin/development/testing'] = array(
     'title' => 'Testing',
     'page callback' => 'simpletest_entrypoint',
     'description' => 'Run tests against Drupal core and your active modules. These tests help assure that your site code is working as designed.',
Index: modules/simpletest/simpletest.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/simpletest.test,v
retrieving revision 1.1
diff -u -r1.1 simpletest.test
--- modules/simpletest/simpletest.test	28 May 2008 14:07:46 -0000	1.1
+++ modules/simpletest/simpletest.test	31 May 2008 00:50:37 -0000
@@ -54,7 +54,7 @@
     }
     else {
       // Run this test from web interface.
-      $this->drupalGet('admin/build/testing');
+      $this->drupalGet('admin/development/testing');
       $this->assertText(t('It is strongly suggested to run the tests with the first user!'));
 
       $edit = array();
