diff options
author | Pedro Alves <palves@redhat.com> | 2017-09-28 22:31:42 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2017-09-28 22:31:42 +0100 |
commit | b2f8eb7a30dcf7c33ea26dfca31401a6786dcd99 (patch) | |
tree | 884193e0b7043cb47360f57922a505fcb14dbb97 /gdb/Makefile.in | |
parent | 08302ed2cb8b175e3bbd4308879154baf64e6d98 (diff) | |
download | gdb-b2f8eb7a30dcf7c33ea26dfca31401a6786dcd99.zip gdb-b2f8eb7a30dcf7c33ea26dfca31401a6786dcd99.tar.gz gdb-b2f8eb7a30dcf7c33ea26dfca31401a6786dcd99.tar.bz2 |
Move utils-selftests.c -> gdb/unittests/
This file was only under gdb/ currently because it predates the
gdb/unittests/ directory.
gdb/ChangeLog:
2017-09-28 Pedro Alves <palves@redhat.com>
* Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
unittests/common-utils-selftests.c.
(SUBDIR_UNITTESTS_OBS): Add common-utils-selftests.o.
(COMMON_OBS): Remove utils-selftests.o.
* utils-selftests.c: Move to ...
* unittests/common-utils-selftests.c: ... here and rename self
test to "string_printf".
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 9004b35..f3f1d40 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -527,6 +527,7 @@ SUBDIR_PYTHON_CFLAGS = SUBDIR_UNITTESTS_SRCS = \ unittests/array-view-selftests.c \ + unittests/common-utils-selftests.c \ unittests/environ-selftests.c \ unittests/function-view-selftests.c \ unittests/offset-type-selftests.c \ @@ -537,6 +538,7 @@ SUBDIR_UNITTESTS_SRCS = \ SUBDIR_UNITTESTS_OBS = \ array-view-selftests.o \ + common-utils-selftests.o \ environ-selftests.o \ function-view-selftests.o \ offset-type-selftests.o \ @@ -1842,7 +1844,6 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ ui-out.o \ user-regs.o \ utils.o \ - utils-selftests.o \ valarith.o \ valops.o \ valprint.o \ |