Module: wine Branch: master Commit: 4d70c59b01c2c670136ce1a9266282ae34e21482 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4d70c59b01c2c670136ce1a926...
Author: Owen Rudge owen@owenrudge.net Date: Mon Jun 23 20:08:01 2008 +0100
shell32/tests: Rename shfldr_netplaces test to shfldr_special, for all special folders.
---
dlls/shell32/tests/Makefile.in | 2 +- .../tests/{shfldr_netplaces.c => shfldr_special.c} | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/dlls/shell32/tests/Makefile.in b/dlls/shell32/tests/Makefile.in index dd77c7c..088499f 100644 --- a/dlls/shell32/tests/Makefile.in +++ b/dlls/shell32/tests/Makefile.in @@ -9,7 +9,7 @@ CTESTS = \ generated.c \ shelllink.c \ shellpath.c \ - shfldr_netplaces.c \ + shfldr_special.c \ shlexec.c \ shlfileop.c \ shlfolder.c \ diff --git a/dlls/shell32/tests/shfldr_netplaces.c b/dlls/shell32/tests/shfldr_special.c similarity index 95% rename from dlls/shell32/tests/shfldr_netplaces.c rename to dlls/shell32/tests/shfldr_special.c index a2619f0..a1e5bc1 100644 --- a/dlls/shell32/tests/shfldr_netplaces.c +++ b/dlls/shell32/tests/shfldr_special.c @@ -1,5 +1,5 @@ /* - * Tests for My Network Places shell folder + * Tests for special shell folders * * Copyright 2008 Robert Shearman for CodeWeavers * @@ -29,6 +29,7 @@
#include "wine/test.h"
+/* Tests for My Network Places */ static void test_parse_for_entire_network(void) { static const WCHAR entire_network_path[] = { @@ -57,7 +58,7 @@ static void test_parse_for_entire_network(void) }
-START_TEST(shfldr_netplaces) +START_TEST(shfldr_special) { test_parse_for_entire_network(); }