From 4d70c59b01c2c670136ce1a9266282ae34e21482 Mon Sep 17 00:00:00 2001 From: Owen Rudge Date: Mon, 23 Jun 2008 20:08:01 +0100 Subject: [PATCH] shell32/tests: Rename shfldr_netplaces test to shfldr_special, for all special folders. --- dlls/shell32/tests/Makefile.in | 2 +- dlls/shell32/tests/{shfldr_netplaces.c => shfldr_special.c} | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) rename dlls/shell32/tests/{shfldr_netplaces.c => shfldr_special.c} (95%) diff --git a/dlls/shell32/tests/Makefile.in b/dlls/shell32/tests/Makefile.in index dd77c7c2f9d..088499f8528 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 a2619f0b1b3..a1e5bc1898b 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(); }