File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
// RUN: %empty-directory(%t)
2
2
// RUN: %clang %target-cc-options -g -O0 -isysroot %sdk -I %swift_src_root/stdlib/public/SDK/os -framework Foundation %swift_src_root/stdlib/public/SDK/os/format.m %swift_src_root/stdlib/public/SDK/os/os_trace_blob.c %s -o %t/os_log_format
3
3
// RUN: %target-run %t/os_log_format | %FileCheck %s
4
- // REQUIRES: rdar41380265
5
4
6
5
// REQUIRES: objc_interop
7
6
134
133
ACCEPT (" simple float %f " , (float )1.5 );
135
134
ACCEPT (" simple double %f " , 1.5 );
136
135
#ifdef __LP64__
137
- ACCEPT (" simple long double %Lf " , (long double )1.5 );
136
+ // Disabled because the upstream clang output for long double changed
137
+ // and causes CI fallout
138
+ // ACCEPT("simple long double %Lf", (long double)1.5);
138
139
#endif
139
140
140
141
ACCEPT (" integer with a static width %666d " , 10 );
You can’t perform that action at this time.
0 commit comments