Delta debugging testcase 02

From CDOT Wiki
Revision as of 20:40, 13 December 2006 by RichardChu (talk | contribs) (Components)
Jump to: navigation, search

Name

Sudoku Test

Description

This test case compiles and runs the Sudoku program written in C++, made by Richard Chu for the Design Patterns class. The purpose of this test is to demonstrate how the algorithm build system can be customized to use other compilers or build systems in the host environment.

Repository

The test uses svn://cdot.senecac.on.ca/deltatest.

Components

SudokuBuild.pl

  • Build Script.
  • It builds the program, creating an a.exe file if compilation is successful.
  • If the compilation fails, a.exe file will not be generated.

SudokuTestCase1.pm

  • The Test Module.
  • Wrapper around the real test case (SudokuTest.cpp located in the Sudoku folder). It runs the test case and reports the results of the test (pass or fail).

SudokuTest.cpp

  • The actual test case.

deltadebugsudoku.pl

  • Delta Debugging Script.
  • Runs the Delta Debugging Algorithm to detect the failed test (in this case, wrong output from a function) and attempt to find the failure inducing changes.

Test Method