Fixed some rtti-options tests.
authorSunil Srivastava <sunil_srivastava@playstation.sony.com>
Tue, 15 May 2018 18:28:42 +0000 (18:28 +0000)
committerSunil Srivastava <sunil_srivastava@playstation.sony.com>
Tue, 15 May 2018 18:28:42 +0000 (18:28 +0000)
commit74f8d86f6bec09d083abf4755b476df7606bcb59
tree4d96da0917d1c116149667fdcd8469f8cfbe1f85
parentdf4fb5a87c1799ae515346ad56a88ec378f1f5ae
Fixed some rtti-options tests.

Certain tests in rtti-options.cpp are not really testing anything because they are testing for the absence of -frtti option to the cc1 process. Since the cc1 process does not take -frtti option, these tests are passing tautologically.

The RTTI mode is enabled by default in cc1, and -fno-rtti disables it. Therefore the correct way to check for enabling of RTTI is to check for the absence of -fno-rtti to cc1, and the correct way to check for disabling of RTTI is to check for the presence of -fno-rtti to cc1.

This patch fixes those tests.

Differential Revision: https://reviews.llvm.org/D46836

llvm-svn: 332384
clang/test/Driver/rtti-options.cpp