P07 lab code added
This commit is contained in:
		
							parent
							
								
									c26659919d
								
							
						
					
					
						commit
						94945069e3
					
				| 
						 | 
				
			
			@ -0,0 +1,13 @@
 | 
			
		|||
SNP_SHARED_MAKEFILE := $(if $(SNP_SHARED_MAKEFILE),$(SNP_SHARED_MAKEFILE),"~/snp/shared.mk")
 | 
			
		||||
 | 
			
		||||
TARGET     := bin/personen-verwaltung
 | 
			
		||||
# BEGIN-STUDENTS-TO-ADD-CODE
 | 
			
		||||
MODULES    := 
 | 
			
		||||
# END-STUDENTS-TO-ADD-CODE
 | 
			
		||||
SOURCES    := src/main.c $(MODULES)
 | 
			
		||||
TSTSOURCES := tests/tests.c $(MODULES)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
include $(SNP_SHARED_MAKEFILE)
 | 
			
		||||
 | 
			
		||||
# CFLAGS  += -Werror
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,8 @@
 | 
			
		|||
/**
 | 
			
		||||
 * @mainpage SNP - P07 Linked List
 | 
			
		||||
 *
 | 
			
		||||
 * @section Purpose
 | 
			
		||||
 *
 | 
			
		||||
 * This is a lab on usage of arrays.
 | 
			
		||||
 *
 | 
			
		||||
 */
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,29 @@
 | 
			
		|||
/* ----------------------------------------------------------------------------
 | 
			
		||||
 * --  _____       ______  _____                                              -
 | 
			
		||||
 * -- |_   _|     |  ____|/ ____|                                             -
 | 
			
		||||
 * --   | |  _ __ | |__  | (___    Institute of Embedded Systems              -
 | 
			
		||||
 * --   | | | '_ \|  __|  \___ \   Zuercher Hochschule Winterthur             -
 | 
			
		||||
 * --  _| |_| | | | |____ ____) |  (University of Applied Sciences)           -
 | 
			
		||||
 * -- |_____|_| |_|______|_____/   8401 Winterthur, Switzerland               -
 | 
			
		||||
 * ----------------------------------------------------------------------------
 | 
			
		||||
 */
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * @brief Lab implementation
 | 
			
		||||
 */
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @brief Main entry point.
 | 
			
		||||
 * @param[in] argc  The size of the argv array.
 | 
			
		||||
 * @param[in] argv  The command line arguments...
 | 
			
		||||
 * @returns Returns EXIT_SUCCESS (=0) on success, EXIT_FAILURE (=1) there is an expression syntax error.
 | 
			
		||||
 */
 | 
			
		||||
int main(int argc, char* argv[])
 | 
			
		||||
{
 | 
			
		||||
	// BEGIN-STUDENTS-TO-ADD-CODE
 | 
			
		||||
    
 | 
			
		||||
	// END-STUDENTS-TO-ADD-CODE
 | 
			
		||||
    return EXIT_SUCCESS;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -0,0 +1,119 @@
 | 
			
		|||
/* ----------------------------------------------------------------------------
 | 
			
		||||
 * --  _____       ______  _____                                              -
 | 
			
		||||
 * -- |_   _|     |  ____|/ ____|                                             -
 | 
			
		||||
 * --   | |  _ __ | |__  | (___    Institute of Embedded Systems              -
 | 
			
		||||
 * --   | | | '_ \|  __|  \___ \   Zuercher Hochschule Winterthur             -
 | 
			
		||||
 * --  _| |_| | | | |____ ____) |  (University of Applied Sciences)           -
 | 
			
		||||
 * -- |_____|_| |_|______|_____/   8401 Winterthur, Switzerland               -
 | 
			
		||||
 * ----------------------------------------------------------------------------
 | 
			
		||||
 */
 | 
			
		||||
/**
 | 
			
		||||
 * @file
 | 
			
		||||
 * @brief Test suite for the given package.
 | 
			
		||||
 */
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#include <sys/wait.h>
 | 
			
		||||
#include <time.h>
 | 
			
		||||
#include <assert.h>
 | 
			
		||||
#include <CUnit/Basic.h>
 | 
			
		||||
#include "test_utils.h"
 | 
			
		||||
 | 
			
		||||
#ifndef TARGET // must be given by the make file --> see test target
 | 
			
		||||
#error missing TARGET define
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/// @brief alias for EXIT_SUCCESS
 | 
			
		||||
#define OK   EXIT_SUCCESS
 | 
			
		||||
/// @brief alias for EXIT_FAILURE
 | 
			
		||||
#define FAIL EXIT_FAILURE
 | 
			
		||||
 | 
			
		||||
/// @brief The name of the STDOUT text file.
 | 
			
		||||
#define OUTFILE "stdout.txt"
 | 
			
		||||
/// @brief The name of the STDERR text file.
 | 
			
		||||
#define ERRFILE "stderr.txt"
 | 
			
		||||
 | 
			
		||||
#define TRACE_INDENT "\n                " ///< allow for better stdout formatting in case of error
 | 
			
		||||
 | 
			
		||||
// setup & cleanup
 | 
			
		||||
static int setup(void)
 | 
			
		||||
{
 | 
			
		||||
    remove_file_if_exists(OUTFILE);
 | 
			
		||||
    remove_file_if_exists(ERRFILE);
 | 
			
		||||
    return 0; // success
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static int teardown(void)
 | 
			
		||||
{
 | 
			
		||||
    // Do nothing.
 | 
			
		||||
    // Especially: do not remove result files - they are removed in int setup(void) *before* running a test.
 | 
			
		||||
    return 0; // success
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// tests
 | 
			
		||||
static void test_person_compare(void)
 | 
			
		||||
{
 | 
			
		||||
	// BEGIN-STUDENTS-TO-ADD-CODE
 | 
			
		||||
	// arrange
 | 
			
		||||
 | 
			
		||||
	// act
 | 
			
		||||
	CU_FAIL("missing test");
 | 
			
		||||
	
 | 
			
		||||
	// assert
 | 
			
		||||
	
 | 
			
		||||
	// END-STUDENTS-TO-ADD-CODE
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void test_list_insert(void)
 | 
			
		||||
{
 | 
			
		||||
	// BEGIN-STUDENTS-TO-ADD-CODE
 | 
			
		||||
	// arrange
 | 
			
		||||
 | 
			
		||||
	// act
 | 
			
		||||
	CU_FAIL("missing test");
 | 
			
		||||
	
 | 
			
		||||
	// assert
 | 
			
		||||
	
 | 
			
		||||
	// END-STUDENTS-TO-ADD-CODE
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void test_list_remove(void)
 | 
			
		||||
{
 | 
			
		||||
	// BEGIN-STUDENTS-TO-ADD-CODE
 | 
			
		||||
	// arrange
 | 
			
		||||
 | 
			
		||||
	// act
 | 
			
		||||
	CU_FAIL("missing test");
 | 
			
		||||
	
 | 
			
		||||
	// assert
 | 
			
		||||
	
 | 
			
		||||
	// END-STUDENTS-TO-ADD-CODE
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void test_list_clear(void)
 | 
			
		||||
{
 | 
			
		||||
	// BEGIN-STUDENTS-TO-ADD-CODE
 | 
			
		||||
	// arrange
 | 
			
		||||
 | 
			
		||||
	// act
 | 
			
		||||
	CU_FAIL("missing test");
 | 
			
		||||
	
 | 
			
		||||
	// assert
 | 
			
		||||
	
 | 
			
		||||
	// END-STUDENTS-TO-ADD-CODE
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @brief Registers and runs the tests.
 | 
			
		||||
 * @returns success (0) or one of the CU_ErrorCode (>0)
 | 
			
		||||
 */
 | 
			
		||||
int main(void)
 | 
			
		||||
{
 | 
			
		||||
    // setup, run, teardown
 | 
			
		||||
    TestMainBasic("lab test", setup, teardown
 | 
			
		||||
                  , test_person_compare
 | 
			
		||||
                  , test_list_insert
 | 
			
		||||
                  , test_list_remove
 | 
			
		||||
                  , test_list_clear
 | 
			
		||||
                  );
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue