~ubuntu-branches/ubuntu/maverick/aspectc++/maverick

« back to all changes in this revision

Viewing changes to Ag++/tests/test_12

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080410174052-xdnsm7oi8hauyyf1
Tags: 1.0pre4~svn.20080409+dfsg-3
Fix another missing include, this time in Ag++/StdSystem.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DESC="include paths from original location "
2
 
main(){
 
1
DESC="Include paths from original location "
 
2
 
 
3
main()
 
4
{
3
5
        mkdir src/bin
4
 
        if  ( ${AGCC} -p src -v1 -o src/bin/test src/*.cc );then true;
 
6
 
 
7
   BIN="src/bin/test12{EXT}"
 
8
 
 
9
   EXEC="${AGCC} -p src -v1 -o ${BIN} src/*.cc"
 
10
        if  ( ${EXEC} );then true;
5
11
        else
6
 
                ERR_MSG="Execution failed '${AGCC} -p src -v1 -o src/bin/test src/*.cc'";
 
12
                ERR_MSG="Execution failed '${EXEC}'";
7
13
                return 0;
8
14
        fi;
9
15
        
 
16
        return 1;
 
17
}
 
18
 
 
19
cleanup()
 
20
{
10
21
        rm -rf puma.config src/bin
11
 
        return 1;
12
22
}