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

« back to all changes in this revision

Viewing changes to Ag++/tests/test_15

  • 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="Check option --keep_woven"
 
2
 
 
3
main()
 
4
{
 
5
        mkdir -p src/bin
 
6
   BIN=src/bin/test15${EXT}
 
7
   
 
8
   EXEC="${AGCC} --keep_woven -p src -v1 -o ${BIN} src/*.cc"
 
9
   if  ( ${EXEC} );then true;
 
10
        else
 
11
                ERR_MSG="Execution failed '${EXEC}'";
 
12
      return 0;
 
13
        fi;
 
14
 
 
15
   if [ -f Test.acc -a -f main.acc ];then true;
 
16
   else
 
17
                ERR_MSG="Woven files do not exist.";
 
18
   fi;
 
19
      
 
20
        return 1;
 
21
}
 
22
 
 
23
cleanup()
 
24
{
 
25
   rm -rf puma.config src/bin *.acc
 
26
}