3
3
//! `./x.py test` (aka [`Kind::Test`]) is currently allowed to reach build steps in other modules.
4
4
//! However, this contains ~all test parts we expect people to be able to build and run locally.
5
5
6
+ use std:: collections:: HashSet ;
6
7
use std:: ffi:: { OsStr , OsString } ;
7
8
use std:: path:: { Path , PathBuf } ;
8
9
use std:: { env, fs, iter} ;
9
10
10
11
use clap_complete:: shells;
11
12
13
+ use crate :: core:: build_steps:: compile:: run_cargo;
12
14
use crate :: core:: build_steps:: doc:: DocumentationFormat ;
13
15
use crate :: core:: build_steps:: synthetic_targets:: MirOptPanicAbortSyntheticTarget ;
14
16
use crate :: core:: build_steps:: tool:: { self , SourceType , Tool } ;
@@ -2173,9 +2175,11 @@ NOTE: if you're sure you want to do this, please open an issue as to why. In the
2173
2175
#[ derive( Debug , Clone , PartialEq , Eq , Hash ) ]
2174
2176
struct BookTest {
2175
2177
compiler : Compiler ,
2178
+ target : TargetSelection ,
2176
2179
path : PathBuf ,
2177
2180
name : & ' static str ,
2178
2181
is_ext_doc : bool ,
2182
+ dependencies : Vec < & ' static str > ,
2179
2183
}
2180
2184
2181
2185
impl Step for BookTest {
@@ -2228,6 +2232,63 @@ impl BookTest {
2228
2232
// Books often have feature-gated example text.
2229
2233
rustbook_cmd. env ( "RUSTC_BOOTSTRAP" , "1" ) ;
2230
2234
rustbook_cmd. env ( "PATH" , new_path) . arg ( "test" ) . arg ( path) ;
2235
+
2236
+ // Books may also need to build dependencies. For example, `TheBook` has
2237
+ // code samples which use the `trpl` crate. For the `rustdoc` invocation
2238
+ // to find them them successfully, they need to be built first and their
2239
+ // paths used to generate the
2240
+ let libs = if !self . dependencies . is_empty ( ) {
2241
+ let mut lib_paths = vec ! [ ] ;
2242
+ for dep in self . dependencies {
2243
+ let mode = Mode :: ToolRustc ;
2244
+ let target = builder. config . build ;
2245
+ // CHECKME: is this correct, or should it be using `builder::Cargo::new`?
2246
+ let cargo = tool:: prepare_tool_cargo (
2247
+ builder,
2248
+ self . compiler ,
2249
+ mode,
2250
+ builder. config . build ,
2251
+ Kind :: Build ,
2252
+ dep,
2253
+ SourceType :: Submodule ,
2254
+ & [ ] ,
2255
+ ) ;
2256
+ // CHECKME: this is used for the "stamp" for this `run_cargo`;
2257
+ // is there a better way to do this?!?
2258
+ let dep_path = PathBuf :: from ( dep) ;
2259
+ let file_name = dep_path. file_name ( ) . unwrap ( ) ;
2260
+ let file_name = PathBuf :: from ( file_name) ;
2261
+
2262
+ let stamp = builder
2263
+ . cargo_out ( self . compiler , mode, target)
2264
+ . join ( file_name)
2265
+ . with_extension ( "stamp" ) ;
2266
+
2267
+ let output_paths = run_cargo ( builder, cargo, vec ! [ ] , & stamp, vec ! [ ] , false , false ) ;
2268
+ let directories = output_paths
2269
+ . into_iter ( )
2270
+ . filter_map ( |p| p. parent ( ) . map ( ToOwned :: to_owned) )
2271
+ . fold ( HashSet :: new ( ) , |mut set, dir| {
2272
+ set. insert ( dir) ;
2273
+ set
2274
+ } ) ;
2275
+ lib_paths. extend ( directories) ;
2276
+ }
2277
+ lib_paths
2278
+ } else {
2279
+ vec ! [ ]
2280
+ } ;
2281
+
2282
+ if !libs. is_empty ( ) {
2283
+ let comma_separated_paths = libs
2284
+ . into_iter ( )
2285
+ . map ( |path| format ! ( "{}" , path. display( ) ) )
2286
+ . collect :: < Vec < String > > ( )
2287
+ . join ( "," ) ;
2288
+
2289
+ rustbook_cmd. args ( vec ! [ String :: from( "--library-path" ) , comma_separated_paths] ) ;
2290
+ }
2291
+
2231
2292
builder. add_rust_test_threads ( & mut rustbook_cmd) ;
2232
2293
let _guard = builder. msg (
2233
2294
Kind :: Test ,
@@ -2286,12 +2347,14 @@ macro_rules! test_book {
2286
2347
$name: ident, $path: expr, $book_name: expr,
2287
2348
default =$default: expr
2288
2349
$( , submodules = $submodules: expr) ?
2350
+ $( , dependencies=$dependencies: expr) ?
2289
2351
;
2290
2352
) +) => {
2291
2353
$(
2292
2354
#[ derive( Debug , Clone , PartialEq , Eq , Hash ) ]
2293
2355
pub struct $name {
2294
2356
compiler: Compiler ,
2357
+ target: TargetSelection ,
2295
2358
}
2296
2359
2297
2360
impl Step for $name {
@@ -2306,6 +2369,7 @@ macro_rules! test_book {
2306
2369
fn make_run( run: RunConfig <' _>) {
2307
2370
run. builder. ensure( $name {
2308
2371
compiler: run. builder. compiler( run. builder. top_stage, run. target) ,
2372
+ target: run. target,
2309
2373
} ) ;
2310
2374
}
2311
2375
@@ -2315,11 +2379,22 @@ macro_rules! test_book {
2315
2379
builder. require_submodule( submodule, None ) ;
2316
2380
}
2317
2381
) *
2382
+
2383
+ let dependencies = vec![ ] ;
2384
+ $(
2385
+ let mut dependencies = dependencies;
2386
+ for dep in $dependencies {
2387
+ dependencies. push( dep) ;
2388
+ }
2389
+ ) ?
2390
+
2318
2391
builder. ensure( BookTest {
2319
2392
compiler: self . compiler,
2393
+ target: self . target,
2320
2394
path: PathBuf :: from( $path) ,
2321
2395
name: $book_name,
2322
2396
is_ext_doc: !$default,
2397
+ dependencies,
2323
2398
} ) ;
2324
2399
}
2325
2400
}
@@ -2334,7 +2409,7 @@ test_book!(
2334
2409
RustcBook , "src/doc/rustc" , "rustc" , default =true ;
2335
2410
RustByExample , "src/doc/rust-by-example" , "rust-by-example" , default =false , submodules=[ "src/doc/rust-by-example" ] ;
2336
2411
EmbeddedBook , "src/doc/embedded-book" , "embedded-book" , default =false , submodules=[ "src/doc/embedded-book" ] ;
2337
- TheBook , "src/doc/book" , "book" , default =false , submodules=[ "src/doc/book" ] ;
2412
+ TheBook , "src/doc/book" , "book" , default =false , submodules=[ "src/doc/book" ] , dependencies= [ "src/doc/book/packages/trpl" ] ;
2338
2413
UnstableBook , "src/doc/unstable-book" , "unstable-book" , default =true ;
2339
2414
EditionGuide , "src/doc/edition-guide" , "edition-guide" , default =false , submodules=[ "src/doc/edition-guide" ] ;
2340
2415
) ;
0 commit comments