#!/bin/sh # # aegis - project change supervisor. # Copyright (C) 2012 Peter Miller # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . # TEST_SUBJECT="aemakegen, autoconf *.in files" # load up standard prelude and test functions . test_funcs AEGIS_PROJECT=rpm-spec-man export AEGIS_PROJECT activity="new project 28" aegis -npr ${AEGIS_PROJECT} -version - -v -dir $work/proj.dir \ -lib $AEGIS_PATH > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="project attributes 33" cat > paf << fubar developer_may_review = true; developer_may_integrate = true; reviewer_may_integrate = true; default_test_exemption = true; develop_end_action = goto_awaiting_integration; default_development_directory = "$work"; fubar if test $? -ne 0 ; then no_result; fi aegis -pa -f paf -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="staff 46" aegis -nd $USER -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi aegis -nrv $USER -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi aegis -ni $USER -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="new change 54" cat > caf << 'fubar' brief_description = "one"; cause = internal_enhancement; test_baseline_exempt = true; fubar if test $? -ne 0 ; then no_result; fi aegis -nc -f caf -v -p $AEGIS_PROJECT > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="develop begin 64" aegis -db 10 -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="new file 68" aegis -nf $work/${AEGIS_PROJECT}.C010/aegis.conf \ $work/${AEGIS_PROJECT}.C010/fred/main.c \ $work/${AEGIS_PROJECT}.C010/fred/something.c.in \ > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi cat > $work/${AEGIS_PROJECT}.C010/aegis.conf << 'fubar' build_command = "exit 0"; history_get_command = "aesvt -check-out -edit ${quote $edit} " "-history ${quote $history} -f ${quote $output}"; history_put_command = "aesvt -check-in -history ${quote $history} " "-f ${quote $input}"; history_query_command = "aesvt -query -history ${quote $history}"; history_content_limitation = binary_capable; diff_command = "set +e; diff $orig $i > $out; test $$? -le 1"; diff3_command = "(diff3 -e $mr $orig $i | sed -e '/^w$$/d' -e '/^q$$/d'; \ echo '1,$$p' ) | ed - $mr > $out"; link_integration_directory = true; test_command = "$sh $filename $arch"; fubar if test $? -ne 0 ; then no_result; fi TAB=`awk 'BEGIN{printf("%c", 9)}' /dev/null` sed "s|{TAB}|$TAB|g" > ok << 'fubar' # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # W W A RRRR N N III N N III N N GGG # W W A A R R NN N I NN N I NN N G G # W W A A RRRR N N N I N N N I N N N G # W W W AAAAA R R N NN I N NN I N NN G GG # W W W A A R R N N I N N I N N G G # W W A A R R N N III N N III N N GGG # # Warning: DO NOT send patches which fix this file. IT IS NOT the original # source file. This file is GENERATED from the Aegis repository file manifest. # If you find a bug in this file, it could well be an Aegis bug. # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # # @configure_input@ # # The configure script generates 2 files: # 1. This Makefile # 2. /config.h # If you change this Makefile, you may also need to change these files. To see # what is configured by the configure script, search for @ in the Makefile.in # file. # # If you wish to reconfigure the installations directories it is RECOMMENDED # that you re-run the configure script. # # Use "./configure --help" for a list of options. # # # directory containing the source # srcdir = @srcdir@ VPATH = @srcdir@ # # the name of the install program to use # INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DIR = @INSTALL@ -m 0755 -d # # The name of the C compiler to use. # CC = @CC@ # # The C compiler flags to use. # CFLAGS = @CFLAGS@ # # The C preprocessor flags to use. # CPPFLAGS = @CPPFLAGS@ # # The linker flags to use # LDFLAGS = @LDFLAGS@ # # prefix for installation path # prefix = @prefix@ exec_prefix = @exec_prefix@ # # Where to put the executables. # # On a network, this would only be shared between machines of identical # cpu-hw-os flavour. It can be read-only. # # The $(DESTDIR) is for packaging. # bindir = $(DESTDIR)@bindir@ # define this to silence ./configure warning datarootdir = $(DESTDIR)@datarootdir@ # # extra libraries required for your system # LIBS = @LIBS@ # # shell to use to run tests and commands # SH = @SH@ # --------------------------------------------------------- # You should not need to change anything below this line. # # The default target # the-default-target: all fred/main.o: fred/main.c {TAB}$(CC) $(CPPFLAGS) $(CFLAGS) -I. -c fred/main.c {TAB}mv main.o $@ fred/something.c: config.status fred/something.c.in {TAB}CONFIG_FILES=$@:fred/something.c.in CONFIG_HEADERS= $(SH) config.status fred/something.o: fred/something.c {TAB}$(CC) $(CPPFLAGS) $(CFLAGS) -I. -c fred/something.c {TAB}mv something.o $@ .mkdir.__bindir_: {TAB}-$(INSTALL_DIR) $(bindir) {TAB}@-test -d $(bindir) && touch $@ {TAB}@sleep 1 # # The fred program. # fred_obj = fred/main.o fred/something.o bin/fred: $(fred_obj) .bin {TAB}$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $(fred_obj) $(LDFLAGS) $(LIBS) $(bindir)/fred: .mkdir.__bindir_ bin/fred {TAB}$(INSTALL_PROGRAM) bin/fred $@ all: all-bin all-bin: bin/fred .bin: {TAB}-mkdir bin {TAB}-chmod 0755 bin {TAB}@-test -d bin && touch $@ {TAB}@sleep 1 check: sure sure: {TAB}@echo Passed All Tests clean: clean-bin clean-misc clean-obj clean-bin: {TAB}rm -f bin/fred clean-misc: {TAB}rm -f .bin .mkdir.__bindir_ core clean-obj: {TAB}rm -f fred/main.o fred/something.o distclean: clean distclean-directories distclean-files distclean-files: {TAB}rm -f Makefile config.cache config.log config.status fred/something.c distclean-directories: {TAB}rm -rf bin install: install-bin install-bin: $(bindir)/fred uninstall: {TAB}rm -f $(bindir)/fred .PHONY: all all-bin check clean clean-bin distclean distclean-directories \ {TAB}{TAB}distclean-files install install-bin sure the-default-target # vim: set ts=8 sw=8 noet : fubar if test $? -ne 0 ; then no_result; fi activity="aemakegen target=makefile 275" aemakegen -c 10 --target=makefile > test.out if test $? -ne 0 ; then fail; fi activity="check rpm-spec 279" diff -u ok test.out if test $? -ne 0 ; then fail; fi # # Only definite negatives are possible. # The functionality exercised by this test appears to work, # no other guarantees are made. # pass # vim: set ts=8 sw=4 et :