#!/usr/bin/python # # custom_prompt_test: tests the modified custom prompt # import socket import os import sys, imp, atexit, signal, time, threading from testutils import * console = setup_tests() absPath = os.getcwd() currentWDir = os.path.basename(absPath) prompt = socket.gethostname() + ':' + currentWDir + '>' sendline("") expect_exact(prompt, "Failed test") test_success()