am-project: Remove node pathes from projectparser output to minimize mismatches in...
[anjuta.git] / plugins / am-project / tests / include.at
blob179313d4f0c23204804775aa545d3fbc4fdb63bb
1 AT_SETUP([Include in GNUMakefile.am])
2 AS_MKDIR_P([include])
3 AT_DATA([include/configure.ac],
4 [[AC_CONFIG_FILES(GNUmakefile)
5 ]])
6 AT_DATA([include/GNUmakefile.am],
7 [[
8 include module/target.am
9 ]])
10 AS_MKDIR_P([include/module])
11 AT_DATA([include/module/target.am],
13 bin_PROGRAMS = target1
14 ]])
15 AT_DATA([expect],
16 [[    GROUP (): include
17         TARGET (): target1
18             PROPERTY (Installation directory): bindir
19 ]])
20 AT_PARSER_CHECK([load include \
21                  list])
22 AT_CHECK([diff -b output expect])
23 AT_CLEANUP