Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
065622f7
Commit
065622f7
authored
3 years ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Skip tests that fail under clang fast-math
parent
3c05e0cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/test/llsdmessagebuilder_tut.cpp
+2
-2
2 additions, 2 deletions
indra/test/llsdmessagebuilder_tut.cpp
indra/test/lltemplatemessagebuilder_tut.cpp
+4
-4
4 additions, 4 deletions
indra/test/lltemplatemessagebuilder_tut.cpp
with
6 additions
and
6 deletions
indra/test/llsdmessagebuilder_tut.cpp
+
2
−
2
View file @
065622f7
...
...
@@ -649,8 +649,8 @@ namespace tut
template
<
>
template
<
>
void
LLSDMessageBuilderTestObject
::
test
<
37
>
()
{
#if LL_
LINUX || LL_DARWIN
skip
(
"This test fails
depending on architecture. Need to fix comparison operation, is_approx_equal, to work on more than one platform.
"
);
#if LL_
CLANG
skip
(
"This test fails
under fast-math
"
);
#endif
LLQuaternion
data
(
0.3713907
f
,
0.5570861
f
,
0.7427813
f
,
0.0
f
);
...
...
This diff is collapsed.
Click to expand it.
indra/test/lltemplatemessagebuilder_tut.cpp
+
4
−
4
View file @
065622f7
...
...
@@ -317,8 +317,8 @@ namespace tut
void
LLTemplateMessageBuilderTestObject
::
test
<
14
>
()
// Quaternion
{
#if LL_
DARWIN
skip
(
"This test fails
depending on architecture. Need to fix comparison operation, is_approx_equal, to work on more than one platform.
"
);
#if LL_
CLANG
skip
(
"This test fails
under fast-math in clang
"
);
#endif
LLMessageTemplate
messageTemplate
=
defaultTemplate
();
messageTemplate
.
addBlock
(
defaultBlock
(
MVT_LLQuaternion
,
12
));
...
...
@@ -788,8 +788,8 @@ namespace tut
void
LLTemplateMessageBuilderTestObject
::
test
<
38
>
()
// non-zero offset with Quaternion
{
#if LL_
DARWIN
skip
(
"This test fails
depending on architecture. Need to fix comparison operation, is_approx_equal, to work on more than one platform.
"
);
#if LL_
CLANG
skip
(
"This test fails
under fast-math in clang
"
);
#endif
LLMessageTemplate
messageTemplate
=
defaultTemplate
();
messageTemplate
.
addBlock
(
defaultBlock
(
MVT_LLQuaternion
,
12
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment