mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-03 16:41:06 +03:00
13 lines
545 B
D
13 lines
545 B
D
// Test recognition of -cache-prune-* commandline flags
|
|
|
|
// RUN: %ldc %s -cache=%t-dir -cache-prune
|
|
// RUN: %ldc %s -cache=%t-dir -cache-prune-interval=10 -cache-prune-maxbytes=10000
|
|
// RUN: %ldc %s -cache=%t-dir -cache-prune -cache-prune-interval=0
|
|
// RUN: %ldc %s -cache=%t-dir -cache-prune -cache-prune-maxbytes=10000
|
|
// RUN: %ldc %s -cache=%t-dir -cache-prune -cache-prune-expiration=10000
|
|
// RUN: %ldc %s -cache=%t-dir -cache-prune-maxpercentage=50
|
|
// RUN: %ldc %s -cache=%t-dir -cache-prune -cache-prune-maxpercentage=150
|
|
|
|
void main()
|
|
{
|
|
}
|