Hello List,

 

  The tests created by beaker-wizard utility creates runtest.sh which is different from the runtest.sh created by rhts-run-simple-test in terms of syntax used hence is not recognized when “make run” is executed. The runtest.sh looks like

 

PACKAGE="gcc"

 

rlJournalStart

    rlPhaseStartSetup

        rlAssertRpm $PACKAGE

        rlRun "TmpDir=\`mktemp -d\`" 0 "Creating tmp directory"

        rlRun "pushd $TmpDir"

    rlPhaseEnd

 

    rlPhaseStartTest

        rlRun "touch foo" 0 "Creating the foo test file"

        rlAssertExists "foo"

        rlRun "ls -l foo" 0 "Listing the foo test file"

    rlPhaseEnd

 

    rlPhaseStartCleanup

        rlRun "popd"

        rlRun "rm -r $TmpDir" 0 "Removing tmp directory"

    rlPhaseEnd

rlJournalPrintText

rlJournalEnd

 

Can anybody help me understand the syntax of file? and point me to the language if it is a programming language syntax.

 

Regards,

Sunil