Commit 2b7fde34 authored by Russ Cox's avatar Russ Cox

move austin/eval and austin/ogle to exp/eval and exp/ogle

R=r
OCL=35736
CL=35746
parent 218a412e
......@@ -4,7 +4,7 @@
include $(GOROOT)/src/Make.$(GOARCH)
TARG=eval
TARG=exp/eval
GOFILES=\
abort.go\
bridge.go\
......
......@@ -2,6 +2,9 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This package is the beginning of an interpreter for Go.
// It can run simple Go programs but does not implement
// interface values or packages.
package eval
import (
......
......@@ -4,7 +4,7 @@
include $(GOROOT)/src/Make.$(GOARCH)
TARG=ogle
TARG=exp/ogle
GOFILES=\
abort.go\
arch.go\
......
......@@ -2,13 +2,14 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Ogle is the beginning of a debugger for Go.
package ogle
import (
"bufio";
"debug/elf";
"debug/proc";
"eval";
"exp/eval";
"fmt";
"go/scanner";
"go/token";
......
......@@ -6,7 +6,7 @@ package ogle
import (
"debug/proc";
"eval";
"exp/eval";
"fmt";
"os";
)
......
......@@ -4,7 +4,7 @@
package main
import "ogle"
import "exp/ogle"
func main() {
ogle.Main();
......
......@@ -8,7 +8,7 @@ import (
"debug/elf";
"debug/gosym";
"debug/proc";
"eval";
"exp/eval";
"fmt";
"log";
"os";
......
......@@ -6,7 +6,7 @@ package ogle
import (
"debug/proc";
"eval";
"exp/eval";
"reflect";
)
......
......@@ -6,7 +6,7 @@ package ogle
import (
"debug/proc";
"eval";
"exp/eval";
"fmt";
"log";
)
......
......@@ -6,7 +6,7 @@ package ogle
import (
"debug/proc";
"eval";
"exp/eval";
"fmt";
)
......
......@@ -7,7 +7,7 @@ package ogle
import (
"debug/gosym";
"debug/proc";
"eval";
"exp/eval";
"log";
"os";
)
......
......@@ -26,12 +26,10 @@ maketest() {
maketest \
pkg \
../usr/austin/eval \
# all of these are subtly different
# from what maketest does.
(xcd pkg/sync;
make clean;
time make
......@@ -55,7 +53,18 @@ make clean
./test.bash
) || exit $?
(xcd ../usr/austin/ogle
(xcd ../usr/r/rpc
make clean
time make
./chanrun
) || exit $?
(xcd ../usr/dsymonds/iterable
make clean
time make test
) || exit $?
(xcd pkg/exp/ogle
make clean
time make ogle
) || exit $?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment