about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authormitaa <mitaa.ceb@gmail.com>2016-04-06 20:08:28 +0200
committermitaa <mitaa.ceb@gmail.com>2016-04-07 06:01:55 +0200
commit8bb19058d4e9418308a430475824cc8beececd1e (patch)
treeb4a0dec309c08d1bdd517d063d0946205e065c73 /src/test
parenta9f34c86a4dd43efa20c673688529516524f23c5 (diff)
downloadrust-8bb19058d4e9418308a430475824cc8beececd1e.tar.gz
rust-8bb19058d4e9418308a430475824cc8beececd1e.zip
Remove rustdocs json format
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-make/rustdoc-json/Makefile4
-rw-r--r--src/test/run-make/rustdoc-json/foo.rs25
2 files changed, 0 insertions, 29 deletions
diff --git a/src/test/run-make/rustdoc-json/Makefile b/src/test/run-make/rustdoc-json/Makefile
deleted file mode 100644
index e49ab64b695..00000000000
--- a/src/test/run-make/rustdoc-json/Makefile
+++ /dev/null
@@ -1,4 +0,0 @@
--include ../tools.mk
-all:
-	$(HOST_RPATH_ENV) $(RUSTDOC) -w json -o $(TMPDIR)/doc.json foo.rs
-	$(HOST_RPATH_ENV) $(RUSTDOC) -o $(TMPDIR)/doc $(TMPDIR)/doc.json
diff --git a/src/test/run-make/rustdoc-json/foo.rs b/src/test/run-make/rustdoc-json/foo.rs
deleted file mode 100644
index 3bd56c14193..00000000000
--- a/src/test/run-make/rustdoc-json/foo.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-#![crate_name = "foo"]
-
-//! Very docs
-
-pub mod bar {
-
-    /// So correct
-    pub mod baz {
-        /// Much detail
-        pub fn baz() { }
-    }
-
-    /// *wow*
-    pub trait Doge { fn dummy(&self) { } }
-}