1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
##############################################################################
# Copyright (c) 2000-2021 Ericsson Telecom AB
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
#
# Contributors:
# Balasko, Jeno
# Raduly, Csaba
# Szabados, Kristof
#
##############################################################################
TOPDIR := ..
include $(TOPDIR)/Makefile.regression
CC := $(CXX)
#CXXFLAGS +=
CPPFLAGS += -I$(TTCN3_DIR)/include
LDFLAGS += -L$(TTCN3_DIR)/lib -L$(XMLDIR)/lib
LDLIBS += -lttcn3 -lcrypto -lxml2
#LD := g++
EXES := hascontrolpart nocontrolpart twocontrolpart
all: $(EXES)
run: $(EXES)
@echo -e "*\n* single control part, no config file: should pass\n*"
./hascontrolpart
@echo -e "*\n* single control part, config file without EXECUTE: should pass\n*"
./hascontrolpart config_noexec.cfg
@echo -e "*\n* single control part, config file with EXECUTE: should pass\n*"
./hascontrolpart config1.cfg
@echo -e "*\n* single control part, nonexistent config file: should fail\n*"
if ./nocontrolpart no_such_thing.cfg; then echo "Should fail"; exit 1; else : ; fi
@echo -e "*\n* single control part, partially corrupted config file: should fail\n*"
if ./nocontrolpart ouch.cfg ; then echo "Should fail"; exit 1; else : ; fi
@echo -e "*\n* single control part, not a config file: should fail\n*"
if ./nocontrolpart Makefile ; then echo "Should fail"; exit 1; else : ; fi
@echo -e "*\n* no control part, no config file: should fail\n*"
if ./nocontrolpart; then echo "Should fail"; exit 1; else : ; fi
@echo -e "*\n* no control part but config file without EXECUTE: should fail\n*"
if ./nocontrolpart config_noexec.cfg; then echo "Should fail"; exit 1; else : ; fi
@echo -e "*\n* no control part but config file: should pass\n*"
./nocontrolpart config.cfg
@echo -e "*\n* no control, no config => error\n*"
if ./nocontrolpart ; then echo No control part should fail; exit 1; else : ; fi
@echo -e "*\n* no control, config file without EXECUTE => error\n*"
if ./nocontrolpart config_noexec.cfg ; then echo No control part should fail; exit 1; else : ; fi
@echo -e "*\n* more than one control part, no config => error\n*"
if ./twocontrolpart ; then echo Multiple control parts should fail; exit 1; else : ; fi
@echo -e "*\n* more than one control part, config file without EXECUTE => error\n*"
if ./twocontrolpart config_noexec.cfg; then echo Multiple control parts should fail; exit 1; else : ; fi
@echo -e "*\n* more than one control part, config file with EXECUTE => pass\n*"
./twocontrolpart config2.cfg
@echo "+++ Success +++"
hascontrolpart: hascontrolpart.o
nocontrolpart: nocontrolpart.cc
twocontrolpart: hascontrolpart.o alsohascontrolpart.cc
$(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
%.cc: %.ttcn
$(TTCN3_COMPILER) -Lg $<
clean distclean:
rm -f *.o $(EXES) *.cc *.hh *.log
|