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

« back to all changes in this revision

Viewing changes to Ag++/tests/test_07

  • 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="Generate includes"
2
 
main(){
3
 
        if  ( ${AGCC} --path src -v2 -Isrc --include_files --dest includes );then true;else
4
 
                ERR_MSG="Failed executing '${AGCC} -Isrc --path src -v2 --include_files --dest includes'";
 
1
DESC="Generate modified include files"
 
2
 
 
3
main()
 
4
{
 
5
   EXEC="${AGCC} --path src -v2 -Isrc --include_files --dest includes"
 
6
        if  ( ${EXEC} );then true;else
 
7
                ERR_MSG="Failed executing '${EXEC}'";
5
8
                return 0;
6
9
        fi;
7
10
        
10
13
                return 0;
11
14
        fi;
12
15
 
13
 
        rm -rf includes;
14
 
        return 1;
 
16
   return 1;
 
17
}
 
18
 
 
19
cleanup()
 
20
{
 
21
   rm -rf includes;
15
22
}