Quellcode durchsuchen

Mark doc tests as ignore

mental vor 5 Jahren
Ursprung
Commit
1cec929f08
4 geänderte Dateien mit 7 neuen und 7 gelöschten Zeilen
  1. 1 1
      src/boot_loader_name.rs
  2. 1 1
      src/command_line.rs
  3. 1 1
      src/elf_sections.rs
  4. 4 4
      src/lib.rs

+ 1 - 1
src/boot_loader_name.rs

@@ -16,7 +16,7 @@ impl BootLoaderNameTag {
     ///
     /// # Examples
     ///
-    /// ```
+    /// ```ignore
     /// if let Some(tag) = boot_info.boot_loader_name_tag() {
     ///     let name = tag.name();
     ///     // println!("Booted by: {:?}!", name);

+ 1 - 1
src/command_line.rs

@@ -15,7 +15,7 @@ impl CommandLineTag {
     ///
     /// # Examples
     ///
-    /// ```
+    /// ```ignore
     /// if let Some(tag) = boot_info.command_line_tag() {
     ///     let command_line = tag.command_line();
     ///     // println!("Command line: {:?}!", command_line);

+ 1 - 1
src/elf_sections.rs

@@ -32,7 +32,7 @@ impl ElfSectionsTag {
     ///
     /// # Examples
     ///
-    /// ```
+    /// ```ignore
     /// if let Some(elf_tag) = boot_info.elf_sections_tag() {
     ///     let mut total = 0;
     ///     for section in elf_tag.sections() {

+ 4 - 4
src/lib.rs

@@ -10,7 +10,7 @@
 //!
 //! # Examples
 //!
-//! ```
+//! ```ignore
 //! use multiboot2::load;
 //!
 //! // The Multiboot 2 specification dictates that the machine state after the
@@ -54,7 +54,7 @@ mod vbe_info;
 ///
 /// Examples
 ///
-/// ```
+/// ```ignore
 /// use multiboot::load;
 ///
 /// fn kmain(multiboot_info_ptr: u32) {
@@ -74,7 +74,7 @@ pub unsafe fn load(address: usize) -> BootInformation {
 ///
 /// Examples
 ///
-/// ```
+/// ```ignore
 /// use multiboot::load;
 ///
 /// let ptr = 0xDEADBEEF as *const _;
@@ -114,7 +114,7 @@ impl BootInformation {
     ///
     /// This is the same as doing:
     ///
-    /// ```
+    /// ```ignore
     /// let end_addr = boot_info.start_address() + boot_info.size();
     /// ```
     pub fn end_address(&self) -> usize {