cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
60 lines
1.8 KiB
C
60 lines
1.8 KiB
C
// RUN: %clang_cc1 %s -fopenacc -verify
|
|
|
|
void BoolExpr(int *I, float *F) {
|
|
|
|
typedef struct {} SomeStruct;
|
|
int Array[5];
|
|
|
|
struct C{};
|
|
// expected-error@+1{{expected expression}}
|
|
#pragma acc parallel if (struct C f())
|
|
while(0);
|
|
|
|
// expected-error@+1{{unexpected type name 'SomeStruct': expected expression}}
|
|
#pragma acc serial if (SomeStruct)
|
|
while(0);
|
|
|
|
// expected-error@+1{{unexpected type name 'SomeStruct': expected expression}}
|
|
#pragma acc serial if (SomeStruct())
|
|
while(0);
|
|
|
|
SomeStruct S;
|
|
// expected-error@+1{{statement requires expression of scalar type ('SomeStruct' invalid)}}
|
|
#pragma acc serial if (S)
|
|
while(0);
|
|
|
|
// expected-warning@+1{{address of array 'Array' will always evaluate to 'true'}}
|
|
#pragma acc kernels if (Array)
|
|
while(0);
|
|
|
|
// expected-warning@+4{{incompatible pointer types assigning to 'int *' from 'float *'}}
|
|
// expected-warning@+3{{using the result of an assignment as a condition without parentheses}}
|
|
// expected-note@+2{{place parentheses around the assignment to silence this warning}}
|
|
// expected-note@+1{{use '==' to turn this assignment into an equality comparison}}
|
|
#pragma acc kernels if (I = F)
|
|
while(0);
|
|
|
|
#pragma acc parallel if (I)
|
|
while(0);
|
|
|
|
#pragma acc serial if (F)
|
|
while(0);
|
|
|
|
#pragma acc kernels if (*I < *F)
|
|
while(0);
|
|
|
|
// expected-error@+1{{OpenACC 'data' construct must have at least one 'attach', 'copy', 'copyin', 'copyout', 'create', 'default', 'deviceptr', 'no_create', or 'present' clause}}
|
|
#pragma acc data if (*I < *F)
|
|
while(0);
|
|
#pragma acc parallel loop if (*I < *F)
|
|
for(int i = 0; i < 5; ++i);
|
|
#pragma acc serial loop if (*I < *F)
|
|
for(int i = 0; i < 5; ++i);
|
|
#pragma acc kernels loop if (*I < *F)
|
|
for(int i = 0; i < 5; ++i);
|
|
|
|
// expected-error@+1{{OpenACC 'if' clause is not valid on 'loop' directive}}
|
|
#pragma acc loop if(I)
|
|
for(int i = 5; i < 10;++i);
|
|
}
|