From 07823f007c2e9740f0091fe7c2bbc5b75981e4ea Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 6 Oct 2002 22:58:37 +0000 Subject: [PATCH] Accounted a behavioral difference between R5 and our implementation. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1417 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/kits/app/broster/FindAppTester.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/tests/kits/app/broster/FindAppTester.cpp b/src/tests/kits/app/broster/FindAppTester.cpp index cf833d6f44..540566a839 100644 --- a/src/tests/kits/app/broster/FindAppTester.cpp +++ b/src/tests/kits/app/broster/FindAppTester.cpp @@ -417,7 +417,12 @@ CommonFindAppTest10(FindAppCaller &caller) CHK(caller(fileType1, &ref) == B_OK); CHK(ref_for_path(appFile1) == ref); CHK(BMimeType(appType1).GetAppHint(&appHint) == B_ENTRY_NOT_FOUND); +// OBOS: We set the app hint for app type 2. There's no reason not to do it. +#ifdef TEST_R5 CHK(BMimeType(appType2).IsInstalled() == false); +#else + check_app_type(appType2, appFile1); +#endif } /*