Last-Update: 2014-08-09
Forwarded: not-needed
Origin: https://github.com/scummvm/scummvm/commit/bb70ea04e963a99f164a152db0ad2d9830a94d25
Bug-ScummVM: https://sourceforge.net/p/scummvm/bugs/6697/
Description: drop problematic test
 TEST: Remove odd test in rendermode tests.
 This specific test checked whether the pointer for two static strings have a
 different address. Since the specific strings checked had the same "value"
 string pooling optimizations will result in them to have the same address and
 thus make this test fail. Furthermore, the test seemed completely pointless,
 I simply dropped it now.

--- a/test/common/rendermode.h
+++ b/test/common/rendermode.h
@@ -48,9 +48,8 @@
 		 * What does getRenderModeCode return?
 		 * Notably, the output should not be in mixed case.
 		 */
 		TS_ASSERT_SAME_DATA(Common::getRenderModeCode(Common::parseRenderMode("FMTOWNS")), "fmtowns", 7);
-		TS_ASSERT_DIFFERS(Common::getRenderModeCode(Common::parseRenderMode("FMTOWNS")), "fmtowns");
 		TS_ASSERT_SAME_DATA(Common::getRenderModeCode(Common::parseRenderMode("CGA")), "cga", 3);
 		TS_ASSERT_SAME_DATA(Common::getRenderModeCode(Common::parseRenderMode("vga")), "vga", 3);
 		TS_ASSERT_SAME_DATA(Common::getRenderModeCode(Common::parseRenderMode("Ega")), "ega", 3);
 		TS_ASSERT_SAME_DATA(Common::getRenderModeCode(Common::parseRenderMode("AmiGa")), "amiga", 5);
