LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Advertise
  • Mirrors
  • Logos
  • Contact us
  • Find Resources
  • Job Opportunity
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Cvs-checkins > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: cvs at opencores.org<cvs@o...>
    Date: Fri Dec 29 20:55:21 CET 2006
    Subject: [cvs-checkins] MODIFIED: jop ...
    Top
    Date: 00/06/12 29:20:55

    Modified: jop/java/target/src/test/jvm DoAll.java
    Added: jop/java/target/src/test/jvm Conversion.java
    Log:
    no message


    Revision Changes Path
    1.12 jop/java/target/src/test/jvm/DoAll.java

    http://www.opencores.org/cvsweb.shtml/jop/java/target/src/test/jvm/DoAll.java.diff?r1=1.11&r2=1.12

    (In the diff below, changes in quantity of whitespace are not shown.)

    Index: DoAll.java
    ===================================================================
    RCS file: /cvsroot/martin/jop/java/target/src/test/jvm/DoAll.java,v
    retrieving revision 1.11
    retrieving revision 1.12
    diff -u -b -r1.11 -r1.12
    --- DoAll.java 29 Dec 2006 16:53:23 -0000 1.11
    +++ DoAll.java 29 Dec 2006 19:55:21 -0000 1.12
    @@ -22,6 +22,7 @@
    new Static(),
    new Array(),
    new Clinit(),
    + new Conversion(),
    new FloatTest(),
    new StackManipulation(),
    new Imul(),



    1.1 jop/java/target/src/test/jvm/Conversion.java

    http://www.opencores.org/cvsweb.shtml/jop/java/target/src/test/jvm/Conversion.java?rev=1.1&content-type=text/x-cvsweb-markup

    Index: Conversion.java
    ===================================================================
    package jvm;

    public class Conversion extends TestCase {

    public String getName() {
    return "Conversion";
    }


    public boolean test() {

    boolean ok = true;

    int i;
    char c;
    short s;
    byte b;

    i = 123;
    b = (byte) i;
    ok = ok && (b==123);

    return ok;
    }

    }



     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.