// Prepare initial settings that will be tested.
  private static void initConfigParm() {
    // Set the configure parameters to be --enable-jeff via user-defined
    // options
    SWTBotShell shell = openProperties("Autotools", "Configure Settings");
    bot.treeWithLabel("Configure Settings").expandNode("configure").select("Advanced");
    SWTBotText text = bot.textWithLabel("Additional command-line options");
    text.typeText("--enable-jeff");
    bot.button("OK").click();
    bot.waitUntil(Conditions.shellCloses(shell), 120000);

    // Create new build configurations that will be used throughout tests
    projectExplorer.bot().tree().select(projectName);
    clickContextMenu(
        projectExplorer.bot().tree().select(projectName), "Build Configurations", "Manage...");
    shell = bot.shell(projectName + ": Manage Configurations");
    shell.activate();
    bot.button("New...").click();
    shell = bot.shell("Create New Configuration");
    shell.activate();
    SWTBotText t = bot.textWithLabel("Name:");
    t.setText("debug");
    AbstractTest.clickRadioButtonInGroup("Existing configuration", "Copy settings from");
    bot.button("OK").click();
    shell = bot.shell(projectName + ": Manage Configurations");
    shell.activate();
    bot.button("New...").click();
    shell = bot.shell("Create New Configuration");
    shell.activate();
    t = bot.textWithLabel("Name:");
    t.setText("default");
    AbstractTest.clickRadioButtonInGroup("Default configuration", "Copy settings from");
    bot.button("OK").click();
    shell = bot.shell(projectName + ": Manage Configurations");
    shell.activate();
    bot.button("OK").click();
    bot.waitUntil(Conditions.shellCloses(shell));
  }