Announcement

Collapse
No announcement yet.

Mplayer builds do not complete in suite tests

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #11
    Originally posted by deanjo View Post
    Made the changes requested

    Code:
    sleep 3
    CFLAGS=""
    /usr/bin/time -f \"MPlayer Build Time: %e Seconds\" make -s -j \$NUM_CPU_JOBS 2>&1 | grep Seconds" > time-compile-mplayer
    and then running

    ./phoronix-test-suite run universe-cli

    still results in this

    Code:
    ======================================
    Timed MPlayer Compilation (Run 1 of 1)
    ======================================
    
    MPlayer Build Time: 11.03 Seconds
    
    ====================================
    Timed MPlayer Compilation:
    Time To Compile
    
    11.03 Seconds
    
    Average: 11.03 Seconds
    ====================================
    Still no joy.
    What about trying:

    Code:
    #!/bin/sh
    
    cd $1
    
    echo "#!/bin/sh
    
    if [ ! -f MPlayer-1.0rc2.tar.bz2 ]
      then
        echo \"MPlayer Not Installed... Build Failed.\"
        exit
    fi
    
    rm -rf MPlayer-1.0rc2/
    tar -xjf MPlayer-1.0rc2.tar.bz2
    cd MPlayer-1.0rc2/
    ./configure > /dev/null
    sleep 3
    /usr/bin/time -f \"MPlayer Build Time: %e Seconds\" make -s -j \$NUM_CPU_JOBS 2>&1 | grep Seconds
    
    if [ \$? = 2 ]
        then
    /usr/bin/time -f \"MPlayer Build Time: %e Seconds\" make -s 2>&1 | grep Seconds
        exit
    fi" > time-compile-mplayer
    
    chmod +x time-compile-mplayer
    Michael Larabel
    https://www.michaellarabel.com/

    Comment


    • #12
      Originally posted by Michael View Post
      What about trying:

      Code:
      #!/bin/sh
      
      cd $1
      
      echo "#!/bin/sh
      
      if [ ! -f MPlayer-1.0rc2.tar.bz2 ]
        then
          echo \"MPlayer Not Installed... Build Failed.\"
          exit
      fi
      
      rm -rf MPlayer-1.0rc2/
      tar -xjf MPlayer-1.0rc2.tar.bz2
      cd MPlayer-1.0rc2/
      ./configure > /dev/null
      sleep 3
      /usr/bin/time -f \"MPlayer Build Time: %e Seconds\" make -s -j \$NUM_CPU_JOBS 2>&1 | grep Seconds
      
      if [ \$? = 2 ]
          then
      /usr/bin/time -f \"MPlayer Build Time: %e Seconds\" make -s 2>&1 | grep Seconds
          exit
      fi" > time-compile-mplayer
      
      chmod +x time-compile-mplayer
      Nope, issue remains
      Code:
      ======================================
      Timed MPlayer Compilation (Run 1 of 1)
      ======================================
      
      MPlayer Build Time: 12.19 Seconds
      
      ====================================
      Timed MPlayer Compilation:
      Time To Compile
      
      12.19 Seconds
      
      Average: 12.19 Seconds
      ====================================
      
      ^C
      dean@linux:~/phoronix-test-suite>

      Comment


      • #13
        I would guess that some build-deps are missing.

        Comment


        • #14
          Originally posted by Kano View Post
          I would guess that some build-deps are missing.
          Like I mentioned earlier, if the mplayer test is the first test in a suite then it builds fine everytime.

          BTW, Michael the latest git doesn't resolve it.
          Last edited by deanjo; 18 May 2008, 11:29 AM.

          Comment


          • #15
            For testing I would remove the |grep Seconds, then you see more. Also I don't get what errorlevel 2 should be for the fallback.

            Comment


            • #16
              Originally posted by Kano View Post
              For testing I would remove the |grep Seconds, then you see more. Also I don't get what errorlevel 2 should be for the fallback.
              Where would I see more?

              Comment


              • #17
                Originally posted by deanjo View Post
                Where would I see more?
                Going through the results on PTS Global I can see many cases where mplayer chokes..






                In fact some don't even report a mplayer run




                Maybe dumping mplayer in favor of something else like compiling the kernel would be a better option (or do I dare say xine-lib )

                Comment


                • #18
                  Or dare I say, Firefox 3!

                  Comment


                  • #19
                    Originally posted by apaige View Post
                    Or dare I say, Firefox 3!
                    lol, why not just openoffice then, that should kill an hour or two.

                    Comment


                    • #20
                      The Linux kernel profile is already in there... Hmm I don't think many users would run the test though if it took in excess of 30 minutes for a compilation.
                      Michael Larabel
                      https://www.michaellarabel.com/

                      Comment

                      Working...
                      X