Changeset 56de5932
- Timestamp:
- Jul 25, 2018, 5:18:10 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 4e1572f
- Parents:
- b8f6002
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rb8f6002 r56de5932 6265 6265 6266 6266 6267 ac_config_links="$ac_config_links src/tests/test.py:src/tests/test.py" 6268 6269 6267 6270 ac_config_files="$ac_config_files src/tests/config.py" 6268 6271 … … 6848 6851 config_files="$ac_config_files" 6849 6852 config_headers="$ac_config_headers" 6853 config_links="$ac_config_links" 6850 6854 config_commands="$ac_config_commands" 6851 6855 … … 6877 6881 Configuration headers: 6878 6882 $config_headers 6883 6884 Configuration links: 6885 $config_links 6879 6886 6880 6887 Configuration commands: … … 7029 7036 "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; 7030 7037 "tools/prettyprinter/Makefile") CONFIG_FILES="$CONFIG_FILES tools/prettyprinter/Makefile" ;; 7038 "src/tests/test.py") CONFIG_LINKS="$CONFIG_LINKS src/tests/test.py:src/tests/test.py" ;; 7031 7039 "src/tests/config.py") CONFIG_FILES="$CONFIG_FILES src/tests/config.py" ;; 7032 7040 … … 7043 7051 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files 7044 7052 test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers 7053 test "${CONFIG_LINKS+set}" = set || CONFIG_LINKS=$config_links 7045 7054 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands 7046 7055 fi … … 7340 7349 7341 7350 7342 eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"7351 eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :L $CONFIG_LINKS :C $CONFIG_COMMANDS" 7343 7352 shift 7344 7353 for ac_tag … … 7617 7626 s/.*/./; q'`/stamp-h$_am_stamp_count 7618 7627 ;; 7619 7628 :L) 7629 # 7630 # CONFIG_LINK 7631 # 7632 7633 if test "$ac_source" = "$ac_file" && test "$srcdir" = '.'; then 7634 : 7635 else 7636 # Prefer the file from the source tree if names are identical. 7637 if test "$ac_source" = "$ac_file" || test ! -r "$ac_source"; then 7638 ac_source=$srcdir/$ac_source 7639 fi 7640 7641 { $as_echo "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5 7642 $as_echo "$as_me: linking $ac_source to $ac_file" >&6;} 7643 7644 if test ! -r "$ac_source"; then 7645 as_fn_error $? "$ac_source: file not found" "$LINENO" 5 7646 fi 7647 rm -f "$ac_file" 7648 7649 # Try a relative symlink, then a hard link, then a copy. 7650 case $ac_source in 7651 [\\/$]* | ?:[\\/]* ) ac_rel_source=$ac_source ;; 7652 *) ac_rel_source=$ac_top_build_prefix$ac_source ;; 7653 esac 7654 ln -s "$ac_rel_source" "$ac_file" 2>/dev/null || 7655 ln "$ac_source" "$ac_file" 2>/dev/null || 7656 cp -p "$ac_source" "$ac_file" || 7657 as_fn_error $? "cannot link or copy $ac_source to $ac_file" "$LINENO" 5 7658 fi 7659 ;; 7620 7660 :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 7621 7661 $as_echo "$as_me: executing $ac_file commands" >&6;} -
configure.ac
rb8f6002 r56de5932 250 250 ]) 251 251 252 AC_CONFIG_LINKS([src/tests/test.py:src/tests/test.py]) 253 252 254 AC_OUTPUT(src/tests/config.py) 253 255 -
src/tests/Makefile.in
rb8f6002 r56de5932 104 104 CONFIG_HEADER = $(top_builddir)/config.h 105 105 CONFIG_CLEAN_FILES = config.py 106 CONFIG_CLEAN_VPATH_FILES = 106 CONFIG_CLEAN_VPATH_FILES = test.py 107 107 am__dirstamp = $(am__leading_dot)dirstamp 108 108 am_avl_test_OBJECTS = avltree/avl_test.$(OBJEXT) \ … … 170 170 CTAGS = ctags 171 171 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.py.in \ 172 $( top_srcdir)/automake/depcomp172 $(srcdir)/test.py $(top_srcdir)/automake/depcomp 173 173 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 174 174 ACLOCAL = @ACLOCAL@ -
src/tests/pybin/tools.py
rb8f6002 r56de5932 163 163 164 164 # Start the walk 165 abspath = os.path.abspath(__main__.__file__) 166 dname = os.path.dirname(abspath) 165 dname = settings.SRCDIR 167 166 os.path.walk(dname, step, '') 168 167
Note: See TracChangeset
for help on using the changeset viewer.