Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Melnikov <mikhail_melnikov@epam.com>2017-11-01 00:44:21 +0300
committerJoel Martinez <joelmartinez@gmail.com>2017-11-01 18:49:57 +0300
commitc9670a1fd865f868d16b218319cf85c97eecece0 (patch)
treef28e5ef3b8012d6a436b254719d51459b1d3b018
parent4b6432536f0e37fd3f7fd401f3709bb729ef58e0 (diff)
mdoc: fixed incorrect analytics test.
Changed expected results expected_fx_remove_statistics.txt. Addeded removing dll files before build them in check-monodocer-fx-statistics-remove test. Earlier it didn't refresh the dll: make[2]: 'Test/DocTest-DropNS-unified-deletetest.dll' is up to date. That's why the test worked with the version compiled with /define:V2 flag. There was one type less on start: #if DELETETEST && !V2 public class WillDelete { public string Name {get;set;} } #endif
-rw-r--r--mdoc/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/mdoc/Makefile b/mdoc/Makefile
index 61cb6e85..88fcbe63 100644
--- a/mdoc/Makefile
+++ b/mdoc/Makefile
@@ -389,9 +389,11 @@ check-monodocer-fx-statistics-remove:
mkdir Test/fx-import
mkdir Test/fx-import/one
cp Test/fx-statistics-remove-configuration.xml Test/fx-import/frameworks.xml
+ rm -Rf Test/DocTest-DropNS-unified-deletetest.dll
$(MAKE) Test/DocTest-DropNS-unified-deletetest.dll
cp Test/DocTest-DropNS-unified-deletetest.dll Test/fx-import/one/DocTest.dll
$(MONO) $(PROGRAM) update -o Test/en.actual -frameworks Test/fx-import
+ rm -Rf Test/DocTest-DropNS-unified.dll
$(MAKE) Test/DocTest-DropNS-unified.dll
rm -rf Test/fx-import/one/DocTest.dll
cp Test/DocTest-DropNS-unified.dll Test/fx-import/one/DocTest.dll