Skip to content

bryan-cho/testSuite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

runSuite

Testing script made to test small C++ programs using bash.

Please star if you benefited from this script!

Contains:

runSuite

Aliasing:

To use runSuite from any directory add this line to your .bashrc:

alias runSuite='~/[cloned directory]/runSuite'

Usage:

runSuite takes a program and runs it using provided .in and .out files.

.in - contains input that the program will take in using STDIN

.out - contains expected output from the program being run with corresponding .in file

To run:

runSuite suitefile program [-valgrind] [-v] [-sr] [-stderr]

suitefile - is a text file containing a list of test names that are in your current directory

program - is an executable C++ program

Example:

Inside suite.txt

test1
test2

Then your directory will contain:

test1.in test1.out test2.in test2.out

Try the sample tests!

cd sample-tests
runSuite suite1.txt ./helloworld
runSuite suite1.txt ./helloworldbad

Picture 1

Picture 2

NOTE: Change runSuite to ../runSuite if you have not aliased the script in your /.bashrc!

Options:

By default, runSuite will simply run the program with the provided .in and .out files.

Here are some options that work with runSuite:

  • -valgrind - check your program for memory leaks by running valgrind on your program for each test.

NOTE: This will only work if you have valgrind installed on your machine. There are some known problems with valgrind on Mac OS X so the behavior may be different than when used on a Linux machine.

  • -v - enable -v option for valgrind to get more verbose output

  • -sr - enable --show-reachable=yes option for valgrind

  • -stderr - show messages to stderr. By default, stderr messages from the program will not show when using runSuite.

createSuite:

For convenience, there is a script createSuite provided to easily make suite files for tests in the current directory.

Simply run the script with a name for the suite file and the suite file will be generated in the current directory.

Usage:

createSuite suitefile.txt

About

Program testing suite created using bash

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published