You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
668 B
28 lines
668 B
8 years ago
|
# Copyright (c) 2016 - present Facebook, Inc.
|
||
|
# All rights reserved.
|
||
|
#
|
||
|
# This source code is licensed under the BSD style license found in the
|
||
|
# LICENSE file in the root directory of this source tree. An additional grant
|
||
|
# of patent rights can be found in the PATENTS file in the same directory.
|
||
|
|
||
8 years ago
|
ROOT_DIR = $(TESTS_DIR)/../..
|
||
8 years ago
|
include $(ROOT_DIR)/Makefile.config
|
||
|
|
||
|
default: compile
|
||
|
|
||
|
test: capture
|
||
8 years ago
|
set -e; \
|
||
8 years ago
|
for file in $(SOURCES) ; do \
|
||
8 years ago
|
diff -u $$file.dot $$file.test.dot ; \
|
||
|
done
|
||
8 years ago
|
$(MAKE) clean
|
||
8 years ago
|
|
||
|
replace: capture
|
||
8 years ago
|
for file in $(SOURCES) ; do \
|
||
8 years ago
|
mv $$file.test.dot $$file.dot ; \
|
||
|
done
|
||
8 years ago
|
$(MAKE) clean
|
||
8 years ago
|
|
||
|
clean:
|
||
8 years ago
|
rm -rf infer-out *.o */*.test.dot */*/*.test.dot
|