-
Notifications
You must be signed in to change notification settings - Fork 572
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i#5195 win2019: Fix client.tls test.
Fixes the expected output for client.tls on Windows. The previous template accounts for a mysterious output line, which we're not seeing anymore on vs2019, so we just remove it from the expected output. Also removes support for PRE_VS2015, seeing as we're effectively dropping support for vs2017 by removing the above-mentioned line. Issue: #5195
- Loading branch information
1 parent
8cdabe2
commit 3ab194a
Showing
3 changed files
with
4 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,20 @@ | ||
#if !defined(WINDOWS) || !defined(PRE_VS2015) | ||
in foo_t::foo_t | ||
# ifdef WINDOWS | ||
// XXX i#4030: It is unclear why there's a 2nd one for the main thread. | ||
in foo_t::foo_t | ||
# endif | ||
in foo_t::foo_t | ||
#endif | ||
sum is 14 | ||
static TLS is 0xdeadbeef | ||
#if !defined(WINDOWS) || !defined(PRE_VS2015) | ||
foo.val is 0xdeadbeef | ||
# ifdef WINDOWS | ||
#ifdef WINDOWS | ||
vector holds 0xdeadbeef | ||
# endif | ||
in foo_t::foo_t | ||
#endif | ||
in foo_t::foo_t | ||
sum is 14 | ||
static TLS is 0xdeadbeef | ||
#if !defined(WINDOWS) || !defined(PRE_VS2015) | ||
foo.val is 0xdeadbeef | ||
# ifdef WINDOWS | ||
#ifdef WINDOWS | ||
vector holds 0xdeadbeef | ||
# endif | ||
#endif | ||
static TLS is 0xdeadbef0 | ||
#if !defined(WINDOWS) || !defined(PRE_VS2015) | ||
foo.val is 0xdeadbeee | ||
# ifdef WINDOWS | ||
#ifdef WINDOWS | ||
vector holds 0xdeadbeee | ||
# endif | ||
#endif |